13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
/**
|
|
* Race list item data transfer object
|
|
* Represents a race in list views
|
|
*/
|
|
export interface RaceListItemDto {
|
|
id: string;
|
|
name: string;
|
|
leagueId: string;
|
|
leagueName: string;
|
|
scheduledTime: string;
|
|
status: string;
|
|
trackName?: string;
|
|
} |