Files
WMC-Project-5/backend_splatournament_manager/src/models/tournament.ts

13 lines
253 B
TypeScript

import { Team } from './team';
export interface Tournament {
id: number;
name: String;
description: String;
maxTeamAmount: number;
currentTeamAmount: number;
registrationStartDate: String;
registrationEndDate: String;
teams?: Team[];
}