website refactor
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
export interface LeagueSponsorshipsViewData {
|
||||
leagueId: string;
|
||||
league: {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
};
|
||||
sponsorshipSlots: Array<{
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
price: number;
|
||||
currency: string;
|
||||
isAvailable: boolean;
|
||||
sponsoredBy?: {
|
||||
id: string;
|
||||
name: string;
|
||||
logoUrl?: string;
|
||||
};
|
||||
}>;
|
||||
sponsorshipRequests: Array<{
|
||||
id: string;
|
||||
slotId: string;
|
||||
sponsorId: string;
|
||||
sponsorName: string;
|
||||
requestedAt: string;
|
||||
status: 'pending' | 'approved' | 'rejected';
|
||||
}>;
|
||||
}
|
||||
Reference in New Issue
Block a user