mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
|
import { ILocation, IDistrict } from './location';
|
||
|
|
||
|
export interface IClient extends ILocation {
|
||
|
district: IDistrict;
|
||
|
districtUid: string;
|
||
|
}
|
||
|
|
||
|
export interface IClientContact {
|
||
|
uid: string;
|
||
|
firstName: string;
|
||
|
lastName: string;
|
||
|
email: string;
|
||
|
emailCc: string[];
|
||
|
consentEmail: boolean;
|
||
|
businessPhone: string;
|
||
|
mobilePhone: string;
|
||
|
consentSms: boolean;
|
||
|
client: IClient;
|
||
|
}
|