Files
gridpilot.gg/apps/website/lib/dtos/GetEntitySponsorshipPricingResultDto.ts
2025-12-17 18:01:47 +01:00

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;
}