18 lines
366 B
TypeScript
18 lines
366 B
TypeScript
import { ViewData } from '@/lib/contracts/view-data/ViewData';
|
|
|
|
|
|
export interface LeaderboardTeamItem extends ViewData {
|
|
id: string;
|
|
name: string;
|
|
tag: string;
|
|
memberCount: number;
|
|
category?: string;
|
|
totalWins: number;
|
|
totalRaces: number;
|
|
logoUrl: string;
|
|
position: number;
|
|
isRecruiting: boolean;
|
|
performanceLevel: string;
|
|
rating?: number;
|
|
}
|