refactor
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import type { Presenter } from '@gridpilot/shared/presentation/Presenter';
|
||||
|
||||
export interface SponsorshipPricingItemDto {
|
||||
id: string;
|
||||
level: string;
|
||||
price: number;
|
||||
currency: string;
|
||||
}
|
||||
|
||||
export interface GetSponsorshipPricingResultDTO {
|
||||
pricing: SponsorshipPricingItemDto[];
|
||||
}
|
||||
|
||||
export interface GetSponsorshipPricingViewModel {
|
||||
pricing: SponsorshipPricingItemDto[];
|
||||
}
|
||||
|
||||
export interface IGetSponsorshipPricingPresenter extends Presenter<GetSponsorshipPricingResultDTO, GetSponsorshipPricingViewModel> {}
|
||||
Reference in New Issue
Block a user