For example I have a simple POCO like so:
public class Customer
{
public int Age { get; set; }
}
I want to exclude the properties that follow this pattern. Note that I cannot exclude the whole class because in future I might add a method that needs coverage.