2023-04-10 09:29:10 +08:00
|
|
|
import { ILocation, IDistrict } from './location';
|
2021-11-12 05:30:10 +08:00
|
|
|
|
|
|
|
export interface IFacility extends ILocation {
|
2023-04-10 09:29:10 +08:00
|
|
|
district: IDistrict;
|
2021-11-12 05:30:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IRAxor {
|
2023-04-10 09:29:10 +08:00
|
|
|
district: string;
|
2021-11-12 05:30:10 +08:00
|
|
|
}
|
2023-04-10 09:29:10 +08:00
|
|
|
|
2021-11-12 05:30:10 +08:00
|
|
|
export interface IFacilityContact {
|
2023-04-16 19:32:26 +08:00
|
|
|
uid: string;
|
2023-04-10 09:29:10 +08:00
|
|
|
firstName: string;
|
|
|
|
lastname: string;
|
|
|
|
email: string;
|
|
|
|
emailCc: string[];
|
|
|
|
consentEmail: boolean;
|
|
|
|
businessPhone: string;
|
|
|
|
mobilePhone: string;
|
|
|
|
consentSms: boolean;
|
|
|
|
client: IFacility;
|
2021-11-12 05:30:10 +08:00
|
|
|
}
|