mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 14:53:37 +01:00
24 lines
544 B
C#
24 lines
544 B
C#
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// ClientIPModel
|
|
/// </summary>
|
|
public class ClientIPModel
|
|
{
|
|
/// <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; }
|
|
}
|
|
} |