mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-15 06:43:37 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
15 lines
304 B
C#
15 lines
304 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.Admin.Mappings;
|
|
|
|
/// <summary>
|
|
/// The Webhook
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class WebhookModel
|
|
{
|
|
/// <summary>
|
|
/// The Webhook Request.
|
|
/// </summary>
|
|
public WebhookRequestModel Request { get; set; } = null!;
|
|
} |