Files
gridpilot.gg/apps/api/src/domain/race/dtos/RaceDTO.ts
2025-12-17 14:04:11 +01:00

15 lines
233 B
TypeScript

import { ApiProperty } from '@nestjs/swagger';
export class RaceDTO {
@ApiProperty()
id!: string;
@ApiProperty()
name!: string;
@ApiProperty()
date!: string;
@ApiProperty({ nullable: true })
leagueName?: string;
}