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

9 lines
143 B
TypeScript
Raw Normal View History

2022-07-18 10:47:54 +02:00
interface ITenant {
id: number;
siteName: string;
siteLogo: string;
locale: string;
2024-03-24 12:54:02 +01:00
customDomain?: string;
2022-07-18 10:47:54 +02:00
}
export default ITenant;