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