10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
import type { LeagueScoringPresetDTO } from '../ports/LeagueScoringPresetProvider';
|
|
|
|
export interface LeagueScoringPresetsViewModel {
|
|
presets: LeagueScoringPresetDTO[];
|
|
totalCount: number;
|
|
}
|
|
|
|
export interface ILeagueScoringPresetsPresenter {
|
|
present(presets: LeagueScoringPresetDTO[]): LeagueScoringPresetsViewModel;
|
|
} |