Files
gridpilot.gg/core/racing/application/presenters/IGetLeagueAdminPresenter.ts
2025-12-16 00:57:31 +01:00

13 lines
352 B
TypeScript

import type { Presenter } from '@gridpilot/shared/presentation/Presenter';
export interface LeagueAdminViewModel {
leagueId: string;
ownerId: string;
}
export interface GetLeagueAdminResultDTO {
leagueId: string;
ownerId: string;
}
export interface IGetLeagueAdminPresenter extends Presenter<GetLeagueAdminResultDTO, LeagueAdminViewModel> {}