mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-13 22:07:27 +01:00
16 lines
378 B
C#
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;
|
|
}
|
|
} |