mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-24 01:51:02 +01:00
24 lines
536 B
C#
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; }
|
|
}
|
|
} |