Files
WireMock.Net-wiremock/src/WireMock.Net/Admin/Mappings/PathModel.cs
Stef Heyenrath d1aa517f99 UrlModel + Funcs
2017-02-03 13:54:19 +01:00

24 lines
536 B
C#

namespace WireMock.Admin.Mappings
{
/// <summary>
/// PathModel
/// </summary>
public class PathModel
{
/// <summary>
/// Gets or sets the matchers.
/// </summary>
/// <value>
/// The matchers.
/// </value>
public MatcherModel[] Matchers { get; set; }
/// <summary>
/// Gets or sets the functions.
/// </summary>
/// <value>
/// The functions.
/// </value>
public string[] Funcs { get; set; }
}
}