Files
gridpilot.gg/apps/website/lib/view-models/RaceStatsViewModel.ts
2025-12-25 00:19:36 +01:00

19 lines
413 B
TypeScript

import type { RaceStatsDTO } from '../types/generated/RaceStatsDTO';
/**
* 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();
}
}