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

9 lines
227 B
TypeScript

import type { ProtestViewModel } from '../apiClient';
/**
* League admin protests transport object
* Contains protests for league administration
*/
export interface LeagueAdminProtestsDto {
protests: ProtestViewModel[];
}