20 lines
384 B
TypeScript
20 lines
384 B
TypeScript
/**
|
|
* Race View Data
|
|
*
|
|
* ViewData for the race template.
|
|
* JSON-serializable, template-ready data structure.
|
|
*/
|
|
|
|
import { ViewData } from "../contracts/view-data/ViewData";
|
|
|
|
export interface RaceViewData extends ViewData {
|
|
id: string;
|
|
name: string;
|
|
date: string;
|
|
track: string;
|
|
car: string;
|
|
status?: string;
|
|
registeredCount?: number;
|
|
strengthOfField?: number;
|
|
}
|