mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-31 22:23:05 +02:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
12 lines
226 B
C#
12 lines
226 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Models;
|
|
|
|
/// <summary>
|
|
/// Webhook
|
|
/// </summary>
|
|
public class Webhook : IWebhook
|
|
{
|
|
/// <inheritdoc />
|
|
public IWebhookRequest Request { get; set; } = null!;
|
|
} |