view data fixes
This commit is contained in:
17
apps/website/lib/view-data/SponsorshipRequestViewData.ts
Normal file
17
apps/website/lib/view-data/SponsorshipRequestViewData.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* ViewData for SponsorshipRequest
|
||||
*/
|
||||
export interface SponsorshipRequestViewData {
|
||||
id: string;
|
||||
sponsorId: string;
|
||||
sponsorName: string;
|
||||
sponsorLogo?: string;
|
||||
tier: 'main' | 'secondary';
|
||||
offeredAmount: number;
|
||||
currency: string;
|
||||
formattedAmount: string;
|
||||
message?: string;
|
||||
createdAt: string;
|
||||
platformFee: number;
|
||||
netAmount: number;
|
||||
}
|
||||
Reference in New Issue
Block a user