13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import type { Presenter } from '@core/shared/presentation/Presenter';
|
|
|
|
export interface ApproveLeagueJoinRequestViewModel {
|
|
success: boolean;
|
|
message: string;
|
|
}
|
|
|
|
export interface ApproveLeagueJoinRequestResultDTO {
|
|
success: boolean;
|
|
message: string;
|
|
}
|
|
|
|
export interface IApproveLeagueJoinRequestPresenter extends Presenter<ApproveLeagueJoinRequestResultDTO, ApproveLeagueJoinRequestViewModel> {} |