Refactor poolservice
This commit is contained in:
parent
a45e4f2c1d
commit
197fa9c530
3 changed files with 29 additions and 12 deletions
14
src/models/dataToShare.ts
Normal file
14
src/models/dataToShare.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { Bonus } from './bonus';
|
||||
import { Champion } from './champion';
|
||||
|
||||
export class DataToShare {
|
||||
constructor(
|
||||
public champions: Champion[],
|
||||
public roles: string[],
|
||||
public rolesCount: number[],
|
||||
public rolesPool: string[],
|
||||
public bonusesPool: Bonus[],
|
||||
public noChampSelected: boolean,
|
||||
public teamSize: number
|
||||
) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue