public bool Equals(WeatherIncident other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.Locations, Locations) && Equals(other.EventType, EventType) && other.Date.Equals(Date) && Equals(other.MoreInformationUrl, MoreInformationUrl));
 }
 public bool Equals(WeatherIncident other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Locations, Locations) && Equals(other.EventType, EventType) && other.Date.Equals(Date) && Equals(other.MoreInformationUrl, MoreInformationUrl);
 }