Files
gridpilot.gg/core/payments/application/presenters/IDeletePrizePresenter.ts
2025-12-16 10:50:15 +01:00

15 lines
360 B
TypeScript

/**
* Presenter Interface: IDeletePrizePresenter
*/
import type { Presenter } from '@gridpilot/shared/presentation/Presenter';
export interface DeletePrizeResultDTO {
success: boolean;
}
export interface DeletePrizeViewModel {
success: boolean;
}
export interface IDeletePrizePresenter extends Presenter<DeletePrizeResultDTO, DeletePrizeViewModel> {}