Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created August 24, 2020 11:26
Show Gist options
  • Select an option

  • Save nmchenry01/0e3d6877d3ad730998023efae84873a2 to your computer and use it in GitHub Desktop.

Select an option

Save nmchenry01/0e3d6877d3ad730998023efae84873a2 to your computer and use it in GitHub Desktop.
Create task DTO "NestJS with Swagger"
export class CreateTask {
@IsNotEmpty()
@IsString()
title: string;
@IsNotEmpty()
@IsString()
description: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment