Files
gridpilot.gg/apps/api/src/domain/dashboard/dtos/DashboardFriendSummaryDTO.ts
2025-12-31 15:39:28 +01:00

20 lines
360 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
import { IsString } from 'class-validator';
export class DashboardFriendSummaryDTO {
@ApiProperty()
@IsString()
id!: string;
@ApiProperty()
@IsString()
name!: string;
@ApiProperty()
@IsString()
country!: string;
@ApiProperty({ nullable: true })
@IsString()
avatarUrl!: string | null;
}