felicity-lims/webapp/models/client.ts

20 lines
415 B
TypeScript
Raw Normal View History

2023-04-10 09:29:10 +08:00
import { ILocation, IDistrict } from './location';
2021-11-12 05:30:10 +08:00
export interface IClient extends ILocation {
2023-04-10 09:29:10 +08:00
district: IDistrict;
districtUid: number;
2021-11-12 05:30:10 +08:00
}
export interface IClientContact {
2023-04-10 09:29:10 +08:00
uid: number;
firstName: string;
lastName: string;
email: string;
emailCc: string[];
consentEmail: boolean;
businessPhone: string;
mobilePhone: string;
consentSms: boolean;
client: IClient;
2021-11-12 05:30:10 +08:00
}