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