TenantResponseDto: {
    createdAt: string;
    csManager: {
        displayName: string;
        id: string;
    } | null;
    currentContractPeriod: {
        expiredAt: string;
        startedAt: string;
    } | null;
    currentPlan:
        | "FREE"
        | "PREMIUM"
        | "ULTIMATE"
        | null;
    id: string;
    isFavorite: boolean;
    key: string;
    loginIdentifier: "userId" | "email";
    memberCount: number;
    memberLimit: number | null;
    name: string;
    salesManager: {
        displayName: string;
        id: string;
    } | null;
    videoHoursLimit: number | null;
}