public virtual void Deserialize(IDataReader reader)
 {
     this.team = new NamedPartyTeam();
     this.team.Deserialize(reader);
     this.outcome = reader.ReadVarUhShort();
 }
 public NamedPartyTeamWithOutcome(NamedPartyTeam team, uint outcome)
 {
     this.team    = team;
     this.outcome = outcome;
 }