Files
gridpilot.gg/core/racing/application/presenters/IGetLeagueAdminPresenter.ts
2025-12-16 11:52:26 +01:00

13 lines
347 B
TypeScript

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