9 lines
227 B
TypeScript
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[];
|
|
} |