export interface LogtoCreateOrganizationDto {
    name: string;
    description?: string;
    customData?: Record<string, any>;
}
