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

export class UserWithNameDTO {
  @ApiProperty()
  accountId: number;

  @ApiProperty()
  name: string;
}
