File

src/task/dto/create-task.dto.ts

Index

Properties

Properties

description
Type : string
Decorators :
@IsNotEmpty()
title
Type : string
Decorators :
@IsNotEmpty()
import { IsNotEmpty } from 'class-validator';

export class CreateTaskDTO {
    @IsNotEmpty()
    title: string;

    @IsNotEmpty()
    description: string;
}

result-matching ""

    No results matching ""