// Copyright © WireMock.Net namespace WireMock.Net.Tests.Serialization; public class CustomPathParamMatcherModel { public string Path { get; set; } public Dictionary PathParams { get; set; } public CustomPathParamMatcherModel(string path, Dictionary pathParams) { Path = path; PathParams = pathParams; } }