Generate classes from JSON - Json to C#, Json to VB.net, and JSON Viewer

    public class Employee
    {
        public string firstName { get; set; }
        public string lastName { get; set; }
    }

    public class Example
    {
        public IList<Employee> employees { get; set; }
    }