refactor
This commit is contained in:
13
core/racing/application/dto/SponsorshipSlotDTO.ts
Normal file
13
core/racing/application/dto/SponsorshipSlotDTO.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { SponsorshipTier } from '../../domain/entities/SeasonSponsorship';
|
||||
|
||||
export interface SponsorshipSlotDTO {
|
||||
tier: SponsorshipTier;
|
||||
price: number;
|
||||
currency: string;
|
||||
formattedPrice: string;
|
||||
benefits: string[];
|
||||
available: boolean;
|
||||
maxSlots: number;
|
||||
filledSlots: number;
|
||||
pendingRequests: number;
|
||||
}
|
||||
Reference in New Issue
Block a user