mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-21 07:22:53 +08:00
22 lines
447 B
TypeScript
22 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;
|
|
}
|