17 lines
377 B
TypeScript
17 lines
377 B
TypeScript
import { ViewModel } from "../contracts/view-models/ViewModel";
|
|
|
|
export interface LeagueScheduleRaceViewModel extends ViewModel {
|
|
id: string;
|
|
name: string;
|
|
scheduledAt: Date;
|
|
formattedDate: string;
|
|
formattedTime: string;
|
|
isPast: boolean;
|
|
isUpcoming: boolean;
|
|
status: string;
|
|
track?: string;
|
|
car?: string;
|
|
sessionType?: string;
|
|
isRegistered?: boolean;
|
|
}
|