All checks were successful
Test CI / build (push) Successful in 1m16s
- 일정 목록 조회 기능 구현 중 - 일정 상세 조회 기능 구현 필요
15 lines
290 B
TypeScript
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[];
|
|
} |