mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-03 05:34:15 +02:00
Initial support for converting the mappings to a Pact(flow) json file (#748)
* WithDescription * WithConsumer / WithProvider * x * . * . * . * . * fix * pact * nullable * ficx * . * fix
This commit is contained in:
11
src/WireMock.Net/Pact/Models/V2/ProviderState.cs
Normal file
11
src/WireMock.Net/Pact/Models/V2/ProviderState.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WireMock.Pact.Models.V2
|
||||
{
|
||||
public class ProviderState
|
||||
{
|
||||
public string Name { get; set; }
|
||||
|
||||
public IDictionary<string, string> Params { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user