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

9 lines
179 B
TypeScript

import type { TeamSummaryDto } from './TeamSummaryDto';
/**
* All teams data transfer object
* List of all teams
*/
export interface AllTeamsDto {
teams: TeamSummaryDto[];
}