Files
gridpilot.gg/core/racing/application/presenters/IJoinLeaguePresenter.ts
2025-12-19 01:22:45 +01:00

13 lines
303 B
TypeScript

import { Presenter } from './Presenter';
export interface JoinLeagueResultDTO {
id: string;
}
export interface JoinLeagueViewModel {
success: boolean;
membershipId?: string;
error?: string;
}
export interface IJoinLeaguePresenter extends Presenter<JoinLeagueResultDTO, JoinLeagueViewModel> {}