mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-03 05:34:15 +02:00
Rename (WireMock.Pact.Models.V2)-Request to PactRequest and -Response to PactResponse (#767)
This commit is contained in:
12
src/WireMock.Net/Pact/Models/V2/PactResponse.cs
Normal file
12
src/WireMock.Net/Pact/Models/V2/PactResponse.cs
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user