Files
gridpilot.gg/apps/website/lib/view-data/MembershipFeeViewData.ts
2026-01-23 15:30:23 +01:00

15 lines
289 B
TypeScript

/**
* ViewData for MembershipFee
* This is the JSON-serializable input for the Template.
*/
export interface MembershipFeeViewData {
id: string;
leagueId: string;
seasonId?: string;
type: string;
amount: number;
enabled: boolean;
createdAt: string;
updatedAt: string;
}