Created
August 25, 2020 14:39
-
-
Save nmchenry01/cef89de908beec6525ef37218e507a85 to your computer and use it in GitHub Desktop.
ApiProperty decorator "NestJS with Swagger"
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
| export class Task { | |
| @ApiProperty() | |
| id: string; | |
| @ApiProperty() | |
| title: string; | |
| @ApiProperty() | |
| description: string; | |
| @ApiProperty() | |
| dateTimeCreated: string; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment