mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-22 07:52:59 +08:00
23 lines
447 B
TypeScript
23 lines
447 B
TypeScript
|
import { ILocation, IDistrict } from './location';
|
||
|
|
||
|
export interface IFacility extends ILocation {
|
||
|
district: IDistrict;
|
||
|
}
|
||
|
|
||
|
export interface IRAxor {
|
||
|
district: string;
|
||
|
}
|
||
|
|
||
|
export interface IFacilityContact {
|
||
|
uid: string;
|
||
|
firstName: string;
|
||
|
lastname: string;
|
||
|
email: string;
|
||
|
emailCc: string[];
|
||
|
consentEmail: boolean;
|
||
|
businessPhone: string;
|
||
|
mobilePhone: string;
|
||
|
consentSms: boolean;
|
||
|
client: IFacility;
|
||
|
}
|