mirror of
https://github.com/astuto/astuto.git
synced 2025-12-19 04:59:34 +01:00
9 lines
146 B
TypeScript
9 lines
146 B
TypeScript
interface ITenant {
|
|
id: number;
|
|
siteName: string;
|
|
oldSiteLogo: string;
|
|
locale: string;
|
|
customDomain?: string;
|
|
}
|
|
|
|
export default ITenant; |