9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
/**
|
|
* Get entity sponsorship pricing result data transfer object
|
|
* Pricing information for sponsorship slots
|
|
*/
|
|
export interface GetEntitySponsorshipPricingResultDto {
|
|
mainSlotPrice: number;
|
|
secondarySlotPrice: number;
|
|
currency: string;
|
|
} |