mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-30 04:04:13 +02:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
14 lines
237 B
C#
14 lines
237 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Models;
|
|
|
|
/// <summary>
|
|
/// IWebhook
|
|
/// </summary>
|
|
public interface IWebhook
|
|
{
|
|
/// <summary>
|
|
/// Request
|
|
/// </summary>
|
|
IWebhookRequest Request { get; set; }
|
|
} |