create-tenant.dto.d.ts 273 B

123456789
  1. import { TenantCustomData } from '../../types';
  2. export interface IConstructTenantDto {
  3. data?: TenantCustomData;
  4. }
  5. export interface ICreateTenantDto extends IConstructTenantDto {
  6. name: string;
  7. identifier: string;
  8. }
  9. //# sourceMappingURL=create-tenant.dto.d.ts.map