public class Employee
{
[JsonPropertyName("firstName")]
public string FirstName { get; set; }
[JsonPropertyName("lastName")]
public string LastName { get; set; }
}
public class Example
{
[JsonPropertyName("employees")]
public IList<Employee> Employees { get; set; }
}