website cleanup

This commit is contained in:
2025-12-25 00:19:36 +01:00
parent d78854a4c6
commit 9486455b9e
82 changed files with 1223 additions and 363 deletions

View File

@@ -1,14 +1,14 @@
import type { MembershipFeeDTO } from '../types/generated/MembershipFeeDTO';
export class MembershipFeeViewModel {
id: string;
leagueId: string;
id!: string;
leagueId!: string;
seasonId?: string;
type: string;
amount: number;
enabled: boolean;
createdAt: Date;
updatedAt: Date;
type!: string;
amount!: number;
enabled!: boolean;
createdAt!: Date;
updatedAt!: Date;
constructor(dto: MembershipFeeDTO) {
Object.assign(this, dto);