9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
/**
|
|
* ViewData for SponsorshipPricing
|
|
*/
|
|
export interface SponsorshipPricingViewData {
|
|
mainSlotPrice: number;
|
|
secondarySlotPrice: number;
|
|
currency: string;
|
|
}
|