export interface PutAppProperty {
  /** The key of the property. */
  propertyKey: string;
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
  propertyValue: any;
}
