- 일정 목록 조회 기능 구현 중 - 일정 상세 조회 기능 구현 필요
This commit is contained in:
15
src/modules/schedule/dto/list/list-response.dto.ts
Normal file
15
src/modules/schedule/dto/list/list-response.dto.ts
Normal 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[];
|
||||
}
|
||||
Reference in New Issue
Block a user