aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/models/base/CustomerContact.ts
blob: e8abea5333648c1f68b429f452dbe39958fc29d4 (plain) (blame)
1
2
3
4
5
6
7
8
export type CustomerContact = {
    firstName: string,
    lastname: string,
    email: string,
    phone: string,
    workTitle: string,
    note: string
}