aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontend/src/models/base/Tenant.ts
blob: 6307efc3da579e2f8fb015fb323dca6ade9a305b (plain) (blame)
1
2
3
4
5
6
7
8
import type {User} from "./User";

export type Tenant = {
    id: string,
    name: string,
    description: string,
    masterUser: User,
}