Refactor poolservice

This commit is contained in:
Daniel Rodriguez 2021-08-04 23:57:43 +02:00
parent a45e4f2c1d
commit 197fa9c530
3 changed files with 29 additions and 12 deletions

14
src/models/dataToShare.ts Normal file
View 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
) {}
}