import { BaseResponseDto } from "src/common/dto/base-response.dto"; class ScheduleList { name: string; id: string; startDate: Date; endDate: Date; type: string; style: string; status: string; } export class ListResponseDto extends BaseResponseDto { data: ScheduleList[]; }