/// <summary>
        /// Returns true if ComDayCqDamCommonsHandlerStandardImageHandlerProperties instances are equal
        /// </summary>
        /// <param name="other">Instance of ComDayCqDamCommonsHandlerStandardImageHandlerProperties to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(ComDayCqDamCommonsHandlerStandardImageHandlerProperties other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     LargeFileThreshold == other.LargeFileThreshold ||
                     LargeFileThreshold != null &&
                     LargeFileThreshold.Equals(other.LargeFileThreshold)
                     ) &&
                 (
                     LargeCommentThreshold == other.LargeCommentThreshold ||
                     LargeCommentThreshold != null &&
                     LargeCommentThreshold.Equals(other.LargeCommentThreshold)
                 ) &&
                 (
                     CqDamEnableExtMetaExtraction == other.CqDamEnableExtMetaExtraction ||
                     CqDamEnableExtMetaExtraction != null &&
                     CqDamEnableExtMetaExtraction.Equals(other.CqDamEnableExtMetaExtraction)
                 ));
        }