mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 06:13:35 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
22 lines
520 B
C#
22 lines
520 B
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Net.Tests.Serialization
|
|
{
|
|
public class CustomPathParamMatcherModel
|
|
{
|
|
public string Path { get; set; }
|
|
public Dictionary<string, string> PathParams { get; set; }
|
|
|
|
public CustomPathParamMatcherModel()
|
|
{
|
|
}
|
|
|
|
public CustomPathParamMatcherModel(string path, Dictionary<string, string> pathParams)
|
|
{
|
|
Path = path;
|
|
PathParams = pathParams;
|
|
}
|
|
}
|
|
} |