12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
/**
|
|
* ViewData for LeagueJoinRequest
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueJoinRequestViewData {
|
|
id: string;
|
|
leagueId: string;
|
|
driverId: string;
|
|
requestedAt: string;
|
|
isAdmin: boolean;
|
|
}
|