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[]; }