refactor
This commit is contained in:
16
core/payments/application/presenters/IAwardPrizePresenter.ts
Normal file
16
core/payments/application/presenters/IAwardPrizePresenter.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Presenter Interface: IAwardPrizePresenter
|
||||
*/
|
||||
|
||||
import type { Presenter } from '@gridpilot/shared/presentation/Presenter';
|
||||
import type { PrizeDto } from './IGetPrizesPresenter';
|
||||
|
||||
export interface AwardPrizeResultDTO {
|
||||
prize: PrizeDto;
|
||||
}
|
||||
|
||||
export interface AwardPrizeViewModel {
|
||||
prize: PrizeDto;
|
||||
}
|
||||
|
||||
export interface IAwardPrizePresenter extends Presenter<AwardPrizeResultDTO, AwardPrizeViewModel> {}
|
||||
Reference in New Issue
Block a user