13 lines
290 B
TypeScript
13 lines
290 B
TypeScript
/**
|
|
* ViewData for LeagueAdminRosterJoinRequest
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueAdminRosterJoinRequestViewData {
|
|
id: string;
|
|
leagueId: string;
|
|
driverId: string;
|
|
driverName: string;
|
|
requestedAtIso: string;
|
|
message?: string;
|
|
}
|