15 lines
289 B
TypeScript
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;
|
|
}
|