9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
/**
|
|
* Race with strength of field data transfer object
|
|
* Race information including SOF
|
|
*/
|
|
export interface RaceWithSOFDto {
|
|
id: string;
|
|
track: string;
|
|
strengthOfField: number | null;
|
|
} |