Files
gridpilot.gg/core/racing/application/presenters/ILeagueSchedulePreviewPresenter.ts
2025-12-15 13:46:07 +01:00

5 lines
176 B
TypeScript

import type { LeagueSchedulePreviewDTO } from '../dto/LeagueScheduleDTO';
export interface ILeagueSchedulePreviewPresenter {
present(data: LeagueSchedulePreviewDTO): void;
}