Files
gridpilot.gg/apps/website/lib/view-models/RaceStatsViewModel.ts
2025-12-18 13:48:35 +01:00

18 lines
394 B
TypeScript

import { RaceStatsDTO } from '../types/generated';
/**
* Race stats view model
* Represents race statistics for display
*/
export class RaceStatsViewModel {
totalRaces: number;
constructor(dto: RaceStatsDTO) {
this.totalRaces = dto.totalRaces;
}
/** UI-specific: Formatted total races */
get formattedTotalRaces(): string {
return this.totalRaces.toLocaleString();
}
}