Rename (WireMock.Pact.Models.V2)-Request to PactRequest and -Response to PactResponse (#767)

This commit is contained in:
Stef Heyenrath
2022-07-08 10:32:12 +02:00
committed by GitHub
parent ef12cb70cc
commit 4d0f96eabe
4 changed files with 14 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace WireMock.Pact.Models.V2;
public class PactResponse
{
public object? Body { get; set; }
public IDictionary<string, string>? Headers { get; set; }
public int Status { get; set; } = 200;
}