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 {}