Skip to content

Instantly share code, notes, and snippets.

@newerton
Created September 20, 2022 16:31
Show Gist options
  • Save newerton/1991cb12db9eb1455a7934403ee59c53 to your computer and use it in GitHub Desktop.
Save newerton/1991cb12db9eb1455a7934403ee59c53 to your computer and use it in GitHub Desktop.
import { IsString, IsNotEmpty, IsDate } from 'class-validator';
export class CreateBookDto {
@IsString()
@IsNotEmpty()
title: string;
@IsNotEmpty()
authorId: any;
@IsNotEmpty()
genreId: any;
@IsDate()
publishDate: Date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment