Files
WireMock.Net-wiremock/test/WireMock.Net.Tests/Serialization/CustomPathParamMatcherModel.cs
Stef Heyenrath b172f700e0 ct
2026-02-14 12:23:19 +01:00

20 lines
485 B
C#

// Copyright © WireMock.Net
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;
}
}
}