Files
WireMock.Net/src/WireMock.Net/Admin/Mappings/PathModel.cs
Stef Heyenrath a3c853b4ad Fix #110
2018-03-20 21:06:58 +01:00

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; }
}
}