13 lines
398 B
TypeScript
13 lines
398 B
TypeScript
import type { Presenter } from '@core/shared/presentation/Presenter';
|
|
|
|
export interface RejectLeagueJoinRequestViewModel {
|
|
success: boolean;
|
|
message: string;
|
|
}
|
|
|
|
export interface RejectLeagueJoinRequestResultDTO {
|
|
success: boolean;
|
|
message: string;
|
|
}
|
|
|
|
export interface IRejectLeagueJoinRequestPresenter extends Presenter<RejectLeagueJoinRequestResultDTO, RejectLeagueJoinRequestViewModel> {} |