/// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked            // Overflow is fine, just wrap
     {
         int hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (UpdateDate != null)
         {
             hashCode = hashCode * 59 + UpdateDate.GetHashCode();
         }
         if (Ta != null)
         {
             hashCode = hashCode * 59 + Ta.GetHashCode();
         }
         if (Na != null)
         {
             hashCode = hashCode * 59 + Na.GetHashCode();
         }
         if (Epsgr != null)
         {
             hashCode = hashCode * 59 + Epsgr.GetHashCode();
         }
         if (Roew != null)
         {
             hashCode = hashCode * 59 + Roew.GetHashCode();
         }
         if (Epsd != null)
         {
             hashCode = hashCode * 59 + Epsd.GetHashCode();
         }
         if (Grgr != null)
         {
             hashCode = hashCode * 59 + Grgr.GetHashCode();
         }
         if (Opgr != null)
         {
             hashCode = hashCode * 59 + Opgr.GetHashCode();
         }
         return(hashCode);
     }
 }