Files
WireMock.Net-wiremock/src/WireMock.Net/Admin/Mappings/ParamModel.cs
Stef Heyenrath 281b970c57 WithParam (#159)
2018-06-28 20:50:09 +02:00

30 lines
713 B
C#

// using System.Collections.Generic;
namespace WireMock.Admin.Mappings
{
/// <summary>
/// Param Model
/// </summary>
public class ParamModel
{
/// <summary>
/// Gets or sets the name.
/// </summary>
public string Name { get; set; }
///// <summary>
///// Gets or sets the values.
///// </summary>
//public IList<string> Values { get; set; }
/// <summary>
/// Gets or sets the matchers.
/// </summary>
public MatcherModel[] Matchers { get; set; }
///// <summary>
///// Gets or sets the functions.
///// </summary>
//public string[] Funcs { get; set; }
}
}