import { ApiProperty } from '@nestjs/swagger';

export class UserDTO {
  @ApiProperty({ required: true })
  id: number;

  @ApiProperty({})
  name: string;

  @ApiProperty({})
  email: string;
}
