mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-22 16:58:06 +01:00
18 lines
409 B
C#
18 lines
409 B
C#
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// PathModel
|
|
/// </summary>
|
|
public class PathModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the matchers.
|
|
/// </summary>
|
|
public MatcherModel[] Matchers { get; set; }
|
|
|
|
///// <summary>
|
|
///// Gets or sets the functions.
|
|
///// </summary>
|
|
//public string[] Funcs { get; set; }
|
|
}
|
|
} |