public bool Equals(BrNewCosmeticsV2 other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }

            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return(Build == other.Build && PreviousBuild == other.PreviousBuild && Hash == other.Hash && Date.Equals(other.Date) && LastAddition.Equals(other.LastAddition));
        }