mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-02 21:24:12 +02:00
13 lines
276 B
C#
13 lines
276 B
C#
#pragma warning disable CS1591
|
|
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;
|
|
} |