2022-07-18 10:47:54 +02:00
|
|
|
interface ITenantJSON {
|
|
|
|
|
id: number;
|
|
|
|
|
site_name: string;
|
|
|
|
|
site_logo: string;
|
|
|
|
|
brand_display_setting: string;
|
|
|
|
|
locale: string;
|
2024-03-24 12:54:02 +01:00
|
|
|
custom_domain?: string;
|
2022-07-18 10:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default ITenantJSON;
|