Language
Show more Show less
Class Options
Property Attributes
JSON Text or URL
    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; }
    }