Skip to content

Instantly share code, notes, and snippets.

@nmchenry01
Created August 25, 2020 14:39
Show Gist options
  • Select an option

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

Select an option

Save nmchenry01/cef89de908beec6525ef37218e507a85 to your computer and use it in GitHub Desktop.
ApiProperty decorator "NestJS with Swagger"
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