Is it possible to validate that each Person in People has doesn't have the same First and Last name?
public class Person { public string First { get; set; } public string Last { get; set; } }public class People { public List<Person> People { get; set; } }