- 일정 목록 조회 기능 구현 중 - 일정 상세 조회 기능 구현 필요
This commit is contained in:
21
src/modules/schedule/dto/list/list-request.dto.ts
Normal file
21
src/modules/schedule/dto/list/list-request.dto.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { IsArray, IsDateString, IsString } from "@nestjs/class-validator";
|
||||
|
||||
export class ListRequestDto {
|
||||
@IsDateString()
|
||||
startDate?: string;
|
||||
|
||||
@IsDateString()
|
||||
endDate?: string;
|
||||
|
||||
@IsArray()
|
||||
styleList?: string[];
|
||||
|
||||
@IsArray()
|
||||
typeList?: string[];
|
||||
|
||||
@IsString()
|
||||
status?: 'yet' | 'completed' | undefined;
|
||||
|
||||
@IsString()
|
||||
name?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user