aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/models/base/Customer.ts
blob: ff52fbd6351c880ffc38f0dfeac54a45caf691ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import type {CustomerContact} from "./CustomerContact";
import type {User} from "./User";

export type Customer = {
    /**
     * Guid id for customer
     */
    id: string,
    /**
     * The name of the company
     */
    name: string,
    /**
     * Responsible contact in the current tenant
     */
    tenantContact: User,
    /**
     * The customers main contact
     */
    mainContact: CustomerContact,
}