mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-02 21:24:12 +02:00
11 lines
230 B
C#
11 lines
230 B
C#
#pragma warning disable CS1591
|
|
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Pact.Models.V2;
|
|
|
|
public class ProviderState
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public IDictionary<string, string> Params { get; set; }
|
|
} |