public TeamMatchEvent(TeamMatchEvent other)
     : base(other)
 {
     teamId     = other.teamId;
     isCaptain  = other.isCaptain;
     multiplier = other.multiplier;
 }
    public override bool Equals(Object otherObj)
    {
        TeamMatchEvent other = (TeamMatchEvent)otherObj;

        return(base.Equals(other) &&
               teamId == other.teamId &&
               isCaptain == other.isCaptain &&
               multiplier == other.multiplier);
    }