init commit

This commit is contained in:
2025-03-21 15:17:53 +01:00
commit d483a245f8
22 changed files with 275 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { Club } from "./club";
import { Team } from "./team";
import { TeamCategory } from "./team-category";
import { Tournament } from "./tournament";
export interface TeamEntry {
id?: number;
sentBy: Club;
status: number;
category: TeamCategory;
tournament: Tournament;
createdAt: string;
updatedAt?: string;
team: Team;
}