13 lines
352 B
TypeScript
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> {} |