felicity-lims/webapp/models/facility.ts

23 lines
427 B
TypeScript
Raw Normal View History

2021-11-12 05:30:10 +08:00
import { ILocation, IDistrict } from "./location";
export interface IFacility extends ILocation {
2021-11-28 18:42:56 +08:00
district: IDistrict;
2021-11-12 05:30:10 +08:00
}
export interface IRAxor {
2021-11-28 18:42:56 +08:00
district: string;
2021-11-12 05:30:10 +08:00
}
export interface IFacilityContact {
2021-11-28 18:42:56 +08:00
uid: number;
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
}