wip league admin tools

This commit is contained in:
2025-12-28 12:04:12 +01:00
parent 5dc8c2399c
commit 6edf12fda8
401 changed files with 15365 additions and 6047 deletions

View File

@@ -0,0 +1,23 @@
export type LeagueSeasonSummaryViewModelInput = {
seasonId: string;
name: string;
status: string;
isPrimary: boolean;
isParallelActive: boolean;
};
export class LeagueSeasonSummaryViewModel {
readonly seasonId: string;
readonly name: string;
readonly status: string;
readonly isPrimary: boolean;
readonly isParallelActive: boolean;
constructor(input: LeagueSeasonSummaryViewModelInput) {
this.seasonId = input.seasonId;
this.name = input.name;
this.status = input.status;
this.isPrimary = input.isPrimary;
this.isParallelActive = input.isParallelActive;
}
}