api client refactor
This commit is contained in:
14
apps/website/lib/dtos/SponsorshipDetailDto.ts
Normal file
14
apps/website/lib/dtos/SponsorshipDetailDto.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Sponsorship detail data transfer object
|
||||
* Details of a sponsorship
|
||||
*/
|
||||
export interface SponsorshipDetailDto {
|
||||
id: string;
|
||||
leagueId: string;
|
||||
leagueName: string;
|
||||
seasonId: string;
|
||||
tier: 'main' | 'secondary';
|
||||
status: string;
|
||||
amount: number;
|
||||
currency: string;
|
||||
}
|
||||
Reference in New Issue
Block a user