Add events v14/feature/add-webhook-events-endpoint (#16192)

This commit is contained in:
Nikolaj Geisle
2024-05-01 08:28:32 +02:00
committed by GitHub
parent e4986b9793
commit abcb837eeb
4 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Umbraco.Cms.Api.Management.ViewModels.Webhook;
public class WebhookEventViewModel
{
public string EventName { get; set; } = string.Empty;
public string EventType { get; set; } = string.Empty;
public string Alias { get; set; } = string.Empty;
}