18 lines
506 B
TypeScript
18 lines
506 B
TypeScript
import type { Presenter } from '@core/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> {} |