public bool Equals(SkippedAutomappingType other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.Type, Type) && Equals(other.Reason, Reason));
 }
 public bool Equals(SkippedAutomappingType other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Type, Type) && Equals(other.Reason, Reason);
 }