2022-07-18 10:47:54 +02:00
|
|
|
interface ITenant {
|
|
|
|
|
id: number;
|
|
|
|
|
siteName: string;
|
2025-01-22 09:55:36 +01:00
|
|
|
oldSiteLogo: string;
|
2022-07-18 10:47:54 +02:00
|
|
|
locale: string;
|
2024-03-24 12:54:02 +01:00
|
|
|
customDomain?: string;
|
2022-07-18 10:47:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default ITenant;
|