Created
September 20, 2022 16:31
-
-
Save newerton/1991cb12db9eb1455a7934403ee59c53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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