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

            return(base.Equals(input));
        }
        /// <summary>
        /// Returns true if RecordingHistoryList instances are equal
        /// </summary>
        /// <param name="other">Instance of RecordingHistoryList to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(RecordingHistoryList other)
        {
            // credit: http://stackoverflow.com/a/10454552/677735
            if (other == null)
            {
                return(false);
            }

            return(false);
        }