Files
gridpilot.gg/core/racing/application/dto/GetEntitySponsorshipPricingResultDTO.ts
2025-12-16 18:21:41 +01:00

11 lines
402 B
TypeScript

import type { SponsorableEntityType } from '../../domain/entities/SponsorshipRequest';
import type { SponsorshipSlotDTO } from './SponsorshipSlotDTO';
export interface GetEntitySponsorshipPricingResultDTO {
entityType: SponsorableEntityType;
entityId: string;
acceptingApplications: boolean;
customRequirements?: string;
mainSlot?: SponsorshipSlotDTO;
secondarySlot?: SponsorshipSlotDTO;
}