/// <summary> /// Returns true if TotatsuJohoResponse instances are equal /// </summary> /// <param name="other">Instance of TotatsuJohoResponse to be compared</param> /// <returns>Boolean</returns> public bool Equals(TotatsuJohoResponse other) { if (other is null) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return (( TotatsuNichiji == other.TotatsuNichiji || TotatsuNichiji != null && TotatsuNichiji.Equals(other.TotatsuNichiji) ) && ( TotatsuTsuchi == other.TotatsuTsuchi || TotatsuTsuchi != null && TotatsuTsuchi.Equals(other.TotatsuTsuchi) ) && ( UketsukeKekka == other.UketsukeKekka || UketsukeKekka != null && UketsukeKekka.Equals(other.UketsukeKekka) )); }
/// <summary> /// Gets the hash code /// </summary> /// <returns>Hash code</returns> public override int GetHashCode() { unchecked // Overflow is fine, just wrap { var hashCode = 41; // Suitable nullity checks etc, of course :) if (TotatsuNichiji != null) { hashCode = hashCode * 59 + TotatsuNichiji.GetHashCode(); } if (TotatsuTsuchi != null) { hashCode = hashCode * 59 + TotatsuTsuchi.GetHashCode(); } if (UketsukeKekka != null) { hashCode = hashCode * 59 + UketsukeKekka.GetHashCode(); } return(hashCode); } }