1
namespace WireMock.Admin.Mappings
2
{
3
/// <summary>
4
/// UrlModel
5
/// </summary>
6
public class UrlModel
7
8
9
/// Gets or sets the matchers.
10
11
/// <value>
12
/// The matchers.
13
/// </value>
14
public MatcherModel[] Matchers { get; set; }
15
16
17
/// Gets or sets the functions.
18
19
20
/// The functions.
21
22
public string[] Funcs { get; set; }
23
}
24