mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-17 07:36:47 +01:00
* More nullable annotations * . * . * FIX * pact * . * p * xxx * ... * auth * array * ...
12 lines
205 B
C#
12 lines
205 B
C#
namespace WireMock.Models;
|
|
|
|
/// <summary>
|
|
/// IWebhook
|
|
/// </summary>
|
|
public interface IWebhook
|
|
{
|
|
/// <summary>
|
|
/// Request
|
|
/// </summary>
|
|
IWebhookRequest Request { get; set; }
|
|
} |