/** * 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; }