export interface IProperty {
    id: string;
    name: string;
    apartment: string;
    city: string;
    country: string;
    state: string;
    street: string;
    zipCode: string;
    createdBy?: string;
    isDeleted: boolean;
    imageURL: string;
    timezone: string;
    officialName?: string;
    sameAsOfficialName?: boolean;
    phoneNumber?: string;
    phoneNumberCountryCode?: string;
    propertyKey?: string;
    hubNetworkId?: string;
    isTimeZoneOverridden: boolean;
    createdAt: string;
    updatedAt: string;
    propertyBillingId?: string;
}
export interface IPropertySettings {
    id: string;
    propertyId: string;
    settings: Record<string, any>;
}
