Files
WireMock.Net/test/WireMock.Net.Tests/Serialization/CustomPathParamMatcherModel.cs
Levan Nozadze 6b393ebc1d Added support of custom matchers in static mappings (#713)
* Added support of custom matchers in static mappings

* Fixed code style issues

* Fixed naming and code style

* added empty line

* Ignore serialization of CustomMatcherMappings property in WireMockServerSettings

* Added integration tests for CustomMatcherMappings
2022-01-17 16:04:37 +01:00

20 lines
490 B
C#

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;
}
}
}