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

            return
                ((
                     RepcacheEnable == other.RepcacheEnable ||
                     RepcacheEnable != null &&
                     RepcacheEnable.Equals(other.RepcacheEnable)
                     ) &&
                 (
                     RepcacheTtl == other.RepcacheTtl ||
                     RepcacheTtl != null &&
                     RepcacheTtl.Equals(other.RepcacheTtl)
                 ) &&
                 (
                     RepcacheMax == other.RepcacheMax ||
                     RepcacheMax != null &&
                     RepcacheMax.Equals(other.RepcacheMax)
                 ));
        }