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