ContractResponseDto: {
    amount: number;
    createdAt: string;
    expiredAt: string;
    id: string;
    memberLimit: number | null;
    memo: string | null;
    plan: "FREE" | "PREMIUM" | "ULTIMATE";
    startedAt: string;
    status:
        | "DRAFT"
        | "SIGNED"
        | "EXPIRED"
        | "CANCELED";
    tenantId: string;
    type: "TRIAL" | "CONTRACT";
    videoHoursLimit: number | null;
}