mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 15:16:53 +01:00
13 lines
248 B
C#
13 lines
248 B
C#
namespace WireMock.Models
|
|
{
|
|
/// <summary>
|
|
/// IWebhook
|
|
/// </summary>
|
|
public interface IWebhook
|
|
{
|
|
/// <summary>
|
|
/// Request
|
|
/// </summary>
|
|
IWebhookRequest Request { get; set; }
|
|
}
|
|
} |