Files
astuto/app/javascript/interfaces/ITenant.ts
2023-02-04 15:43:15 +01:00

8 lines
118 B
TypeScript

interface ITenant {
id: number;
siteName: string;
siteLogo: string;
locale: string;
}
export default ITenant;