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

            return(item != null && SteamId.Equals(item.SteamId));
        }
Exemple #3
0
        public override bool Equals(object obj)
        {
            var other = obj as PlayerBans;

            return(other != null && SteamId.Equals(other.SteamId));
        }