11 lines
355 B
TypeScript
11 lines
355 B
TypeScript
import type { Presenter } from '@core/shared/presentation/Presenter';
|
|
|
|
export interface UpdateLeagueMemberRoleViewModel {
|
|
success: boolean;
|
|
}
|
|
|
|
export interface UpdateLeagueMemberRoleResultDTO {
|
|
success: boolean;
|
|
}
|
|
|
|
export interface IUpdateLeagueMemberRolePresenter extends Presenter<UpdateLeagueMemberRoleResultDTO, UpdateLeagueMemberRoleViewModel> {} |