public bool Equals(UnturnedPendingUser other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(SteamId.Equals(other.SteamId)); }
public override bool Equals(object obj) { var item = obj as Player; return(item != null && SteamId.Equals(item.SteamId)); }
public override bool Equals(object obj) { var other = obj as PlayerBans; return(other != null && SteamId.Equals(other.SteamId)); }