Skip to content

Instantly share code, notes, and snippets.

@hzburki
Created July 14, 2019 15:11
Show Gist options
  • Save hzburki/e749f55129612453b7738e4b8ecd1172 to your computer and use it in GitHub Desktop.
Save hzburki/e749f55129612453b7738e4b8ecd1172 to your computer and use it in GitHub Desktop.
Data transfer object for creating users - NestJS SequelizeJS blog
export class CreateUserDto {
readonly name: string;
readonly age: number;
readonly email: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment