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

            return
                ((
                     LargeFileMin == other.LargeFileMin ||
                     LargeFileMin != null &&
                     LargeFileMin.Equals(other.LargeFileMin)
                     ) &&
                 (
                     CacheApply == other.CacheApply ||
                     CacheApply != null &&
                     CacheApply.Equals(other.CacheApply)
                 ) &&
                 (
                     MimeTypes == other.MimeTypes ||
                     MimeTypes != null &&
                     MimeTypes.Equals(other.MimeTypes)
                 ));
        }