12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
/**
|
|
* ViewData for LeagueMember
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueMemberViewData {
|
|
driverId: string;
|
|
currentUserId: string;
|
|
driver?: any;
|
|
role: string;
|
|
joinedAt: string;
|
|
}
|