17 lines
338 B
TypeScript
17 lines
338 B
TypeScript
/**
|
|
* TeamsViewData - Pure ViewData for TeamsTemplate
|
|
* Contains only raw serializable data, no methods or computed properties
|
|
*/
|
|
|
|
export interface TeamSummaryData {
|
|
teamId: string;
|
|
teamName: string;
|
|
leagueName: string;
|
|
memberCount: number;
|
|
logoUrl?: string;
|
|
}
|
|
|
|
export interface TeamsViewData {
|
|
teams: TeamSummaryData[];
|
|
}
|