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