using Json.LitJson; using System.Collections.Generic; namespace ServiceClientGenerator.Endpoints.Tests { /// /// Object model for Test. /// public class Test { public string documentation { get; set; } public Dictionary @params { get; set; } public string[] tags { get; set; } public Expectation expect { get; set; } public List operationInputs { get; set; } } }