mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
interface ITenantJSON {
|
|
id: number;
|
|
site_name: string;
|
|
site_logo: string;
|
|
brand_display_setting: string;
|
|
locale: string;
|
|
custom_domain?: string;
|
|
}
|
|
|
|
export default ITenantJSON; |