/// <inheritdoc/> public bool Equals(SelectionCandidate other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(Equals(Implementation, other.Implementation) && FeedUri.Equals(other.FeedUri) && IsSuitable == other.IsSuitable && Notes == other.Notes); }