10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
/**
|
|
* ViewData for LeagueCard
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueCardViewData {
|
|
id: string;
|
|
name: string;
|
|
description?: string;
|
|
}
|