Files
scheduler-back/src/modules/schedule/dto/list/list-response.dto.ts
geonhee-min 34c33202c6
All checks were successful
Test CI / build (push) Successful in 1m16s
issue #63
- 일정 목록 조회 기능 구현 중
- 일정 상세 조회 기능 구현 필요
2025-12-10 17:15:15 +09:00

15 lines
290 B
TypeScript

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[];
}