mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-25 03:34:58 +01:00
9 lines
238 B
C#
9 lines
238 B
C#
#pragma warning disable CS1591
|
|
namespace WireMock.Pact.Models.V2;
|
|
|
|
public class Metadata
|
|
{
|
|
public string PactSpecificationVersion { get; set; }
|
|
|
|
public PactSpecification PactSpecification { get; set; } = new PactSpecification();
|
|
} |