mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-12 05:11:31 +01:00
30 lines
713 B
C#
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; }
|
|
}
|
|
} |