10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
/**
|
|
* ViewData for LeagueAdminSchedule
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueAdminScheduleViewData {
|
|
seasonId: string;
|
|
published: boolean;
|
|
races: any[];
|
|
}
|