mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-26 02:08:29 +02: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;
|
|
}
|
|
} |