Files
marketplaces/src/app/shared/models/config/tenant.model.ts

19 lines
428 B
TypeScript
Raw Normal View History

import { UUID, UrlString } from '../../types/primitive.types';
export interface TenantConfig {
id: UUID;
slug: string;
code: string;
host: string;
name: string;
websiteBaseUrl: UrlString;
builderBaseUrl: UrlString;
backofficeBaseUrl: UrlString;
defaultLocale: string;
supportedLocales: string[];
defaultCurrency: string;
supportedCurrencies: string[];
timezone: string;
documentationUrl?: string;
}