11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
import type { Presenter } from '@gridpilot/shared/presentation/Presenter';
|
|
|
|
export interface GetTotalLeaguesViewModel {
|
|
totalLeagues: number;
|
|
}
|
|
|
|
export interface GetTotalLeaguesResultDTO {
|
|
totalLeagues: number;
|
|
}
|
|
|
|
export interface IGetTotalLeaguesPresenter extends Presenter<GetTotalLeaguesResultDTO, GetTotalLeaguesViewModel> {} |