first commit
This commit is contained in:
11
myteamwallet_frontend/src/app/modules/teams/model/team.ts
Normal file
11
myteamwallet_frontend/src/app/modules/teams/model/team.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Player } from 'src/app/model';
|
||||
|
||||
export interface Team {
|
||||
id: number;
|
||||
alias: string;
|
||||
balance: number;
|
||||
name: string;
|
||||
outstanding?: number;
|
||||
players?: Player[];
|
||||
settings?: any[];
|
||||
}
|
||||
Reference in New Issue
Block a user