15 lines
274 B
TypeScript
15 lines
274 B
TypeScript
/**
|
|
* ViewData for TeamJoinRequest
|
|
*/
|
|
export interface TeamJoinRequestViewData {
|
|
requestId: string;
|
|
driverId: string;
|
|
driverName: string;
|
|
teamId: string;
|
|
status: string;
|
|
requestedAt: string;
|
|
avatarUrl?: string;
|
|
currentUserId: string;
|
|
isOwner: boolean;
|
|
}
|