7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
/**
|
|
* Import race results input data transfer object
|
|
* Input for importing race results
|
|
*/
|
|
export interface ImportRaceResultsInputDto {
|
|
resultsFileContent: string;
|
|
} |