Files
gridpilot.gg/apps/website/lib/dtos/AllLeaguesWithCapacityDto.ts
2025-12-17 18:01:47 +01:00

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