import { TenantUserType } from "../../enums/tenants/TenantUserType"; export type TTenant = { id: string; createdAt: Date; updatedAt: Date; slug: string; name: string; icon: string | null; subscriptionId: string | null; active: boolean; deactivatedReason: string | null; }; export type TTenantUser = { id: string; createdAt: Date; updatedAt: Date; tenantId: string; userId: string; type: TenantUserType; };