Files
astuto/app/javascript/interfaces/ITenant.ts

9 lines
146 B
TypeScript
Raw Normal View History

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;