src/task/dto/create-task.dto.ts
Properties |
description |
Type : string
|
Decorators :
@IsNotEmpty()
|
Defined in src/task/dto/create-task.dto.ts:8
|
title |
Type : string
|
Decorators :
@IsNotEmpty()
|
Defined in src/task/dto/create-task.dto.ts:5
|
import { IsNotEmpty } from 'class-validator';
export class CreateTaskDTO {
@IsNotEmpty()
title: string;
@IsNotEmpty()
description: string;
}