This commit is contained in:
Stef Heyenrath
2026-03-06 07:37:51 +01:00
parent 7bbfe7a887
commit f83b4bd264
13 changed files with 104 additions and 132 deletions

View File

@@ -1,20 +1,16 @@
// Copyright © WireMock.Net
namespace WireMock.Net.Tests.Serialization
namespace WireMock.Net.Tests.Serialization;
public class CustomPathParamMatcherModel
{
public class CustomPathParamMatcherModel
public string Path { get; set; }
public Dictionary<string, string> PathParams { get; set; }
public CustomPathParamMatcherModel(string path, Dictionary<string, string> pathParams)
{
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;
}
Path = path;
PathParams = pathParams;
}
}