issue #63
All checks were successful
Test CI / build (push) Successful in 1m16s

- 일정 목록 조회 기능 구현 중
- 일정 상세 조회 기능 구현 필요
This commit is contained in:
geonhee-min
2025-12-10 17:15:15 +09:00
parent bb79557876
commit 34c33202c6
4 changed files with 61 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
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[];
}