felicity-lims/webapp/models/client.ts

20 lines
415 B
TypeScript
Raw Normal View History

2023-11-10 14:05:15 +08:00
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;
}