init commit
This commit is contained in:
15
src/interfaces/team-entry.ts
Normal file
15
src/interfaces/team-entry.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user