mirror of
https://github.com/lingble/twenty.git
synced 2025-11-01 05:07:56 +00:00
7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
export interface Tenant {
|
|
id: number;
|
|
name: string;
|
|
domain: string;
|
|
auth0_client_id: string;
|
|
}
|