mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
8 lines
118 B
TypeScript
8 lines
118 B
TypeScript
|
|
interface ITenant {
|
||
|
|
id: number;
|
||
|
|
siteName: string;
|
||
|
|
siteLogo: string;
|
||
|
|
locale: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ITenant;
|