export interface OrganizationDTO {
    id: string;
    name: string;
    slug: string;
    subdomain: string | null;
    domain: string | null;
    createdAt: Date;
    updatedAt: Date;
    deletedAt: Date | null;
}
//# sourceMappingURL=OrganizationDTO.d.ts.map