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