mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-26 10:18:26 +02:00
Fix WithBody when using Pact and added more nullable annotations (#783)
* More nullable annotations * . * . * FIX * pact * . * p * xxx * ... * auth * array * ...
This commit is contained in:
@@ -2,11 +2,11 @@ namespace WireMock.Pact.Models.V2;
|
||||
|
||||
public class Interaction
|
||||
{
|
||||
public string Description { get; set; } = string.Empty;
|
||||
public string? Description { get; set; }
|
||||
|
||||
public string ProviderState { get; set; }
|
||||
public string? ProviderState { get; set; }
|
||||
|
||||
public PactRequest Request { get; set; } = new PactRequest();
|
||||
public PactRequest Request { get; set; } = new();
|
||||
|
||||
public PactResponse Response { get; set; } = new PactResponse();
|
||||
public PactResponse Response { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user