mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-28 11:51:48 +01:00
* Create WireMock.Net.MimePart project * . * REFACTOR * ILRepack * -- * ... * x * x * . * fix * public class MimePartMatcher * shared * min * . * <!--<DelaySign>true</DelaySign>--> * Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
15 lines
330 B
C#
15 lines
330 B
C#
// Copyright © WireMock.Net
|
|
|
|
#pragma warning disable CS1591
|
|
namespace WireMock.Pact.Models.V2;
|
|
|
|
public class Interaction
|
|
{
|
|
public string? Description { get; set; }
|
|
|
|
public string? ProviderState { get; set; }
|
|
|
|
public PactRequest Request { get; set; } = new();
|
|
|
|
public PactResponse Response { get; set; } = new();
|
|
} |