16 lines
351 B
TypeScript
16 lines
351 B
TypeScript
export interface SponsorshipRequestsPageDto {
|
|
sections: Array<{
|
|
entityType: 'driver' | 'team' | 'season';
|
|
entityId: string;
|
|
entityName: string;
|
|
requests: Array<{
|
|
requestId: string;
|
|
sponsorId: string;
|
|
sponsorName: string;
|
|
message: string | null;
|
|
createdAtIso: string;
|
|
raw: unknown;
|
|
}>;
|
|
}>;
|
|
}
|