16 lines
402 B
TypeScript
16 lines
402 B
TypeScript
/**
|
|
* Presenter Interface: IAwardPrizePresenter
|
|
*/
|
|
|
|
import type { Presenter } from '@core/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> {} |