using System.Collections.Generic; namespace WireMock.Admin { /// /// Param Model /// public class ParamModel { /// /// Gets or sets the name. /// /// /// The name. /// public string Name { get; set; } /// /// Gets or sets the values. /// /// /// The values. /// public IList Values { get; set; } } }