Files
gridpilot.gg/core/racing/application/presenters/IUpdateLeagueMemberRolePresenter.ts
2025-12-16 11:52:26 +01:00

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> {}