9 lines
254 B
TypeScript
9 lines
254 B
TypeScript
import type { LeagueSummaryDto } from './LeagueSummaryDto';
|
|
|
|
/**
|
|
* All leagues with capacity transport object
|
|
* Contains a list of leagues with their capacity information
|
|
*/
|
|
export interface AllLeaguesWithCapacityDto {
|
|
leagues: LeagueSummaryDto[];
|
|
} |