13 lines
303 B
TypeScript
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> {} |