Files
WireMock.Net/test/WireMock.Net.Tests/Serialization/CustomPathParamMatcherModel.cs
Stef Heyenrath f83b4bd264 x
2026-03-06 07:37:51 +01:00

16 lines
378 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(string path, Dictionary<string, string> pathParams)
{
Path = path;
PathParams = pathParams;
}
}