14 lines
507 B
TypeScript
14 lines
507 B
TypeScript
import type { LeagueScoringPresetOutputPort } from '../ports/output/LeagueScoringPresetOutputPort';
|
|
import type { Presenter } from '@core/shared/presentation';
|
|
|
|
export interface LeagueScoringPresetsViewModel {
|
|
presets: LeagueScoringPresetOutputPort[];
|
|
totalCount: number;
|
|
}
|
|
|
|
export interface LeagueScoringPresetsResultDTO {
|
|
presets: LeagueScoringPresetOutputPort[];
|
|
}
|
|
|
|
export interface ILeagueScoringPresetsPresenter
|
|
extends Presenter<LeagueScoringPresetsResultDTO, LeagueScoringPresetsViewModel> {} |