mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
19 lines
415 B
TypeScript
19 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;
|
|
}
|