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

Equals() protected method

protected Equals ( BaseCharacterModel other ) : bool
other BaseCharacterModel
return bool
        protected bool Equals(BaseCharacterModel other)
        {
            return string.Equals(Style, other.Style) && string.Equals(MainImageUrl, other.MainImageUrl) && string.Equals(ThumbnailUrl, other.ThumbnailUrl) && string.Equals(Description, other.Description) && string.Equals(ColorTheme, other.ColorTheme) && string.Equals(Name, other.Name) && string.Equals(DisplayName, other.DisplayName) && Id == other.Id;
        }

Same methods

BaseCharacterModel::Equals ( object obj ) : bool