FrannHammer.Models.BaseCharacterAttributeModel.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( BaseCharacterAttributeModel other ) : bool
other BaseCharacterAttributeModel
return bool
        protected bool Equals(BaseCharacterAttributeModel other)
        {
            return OwnerId == other.OwnerId && string.Equals(Rank, other.Rank)
                && string.Equals(Value, other.Value) && string.Equals(Name, other.Name)
                && Id == other.Id && SmashAttributeTypeId == other.SmashAttributeTypeId
                && CharacterAttributeTypeId == other.CharacterAttributeTypeId;
        }

Same methods

BaseCharacterAttributeModel::Equals ( object obj ) : bool
BaseCharacterAttributeModel