Add Backend Project and add Tournament Detail Page

This commit is contained in:
2026-03-04 11:13:08 +01:00
parent 3ba492b74c
commit b083d26666
13 changed files with 295 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
export interface Tournament {
id:number;
name:String;
description:String;
maxTeamAmount:number;
currentTeamAmount:number;
}