mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-23 02:34:55 +01:00
15 lines
344 B
C#
15 lines
344 B
C#
#pragma warning disable CS1591
|
|
using System.Collections.Generic;
|
|
|
|
namespace WireMock.Pact.Models.V2;
|
|
|
|
public class Pact
|
|
{
|
|
public Pacticipant Consumer { get; set; }
|
|
|
|
public List<Interaction> Interactions { get; set; } = new List<Interaction>();
|
|
|
|
public Metadata Metadata { get; set; }
|
|
|
|
public Pacticipant Provider { get; set; }
|
|
} |