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