public INETeam(INETeamResponse newTeam)
 {
     FullName   = newTeam.TeamName;
     Index      = newTeam.Team;
     Leadership = newTeam.Leadership;
     Gold       = newTeam.Wealth;
     //Upkeep = 0;
     Characters = new List <INECharacter>();
     Formations = new List <INEFormation>();
     Inventory  = new INEInventory();
     SpellBook  = new List <INESpell>();
 }
 public INETeam()
 {
     FullName = "";
     Index    = -1;
     Gold     = 0;
     //Leadership = 0;
     //Upkeep = 0;
     Characters = new List <INECharacter>();
     Formations = new List <INEFormation>();
     Inventory  = new INEInventory();
     SpellBook  = new List <INESpell>();
 }