Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
701 B

// ==========================================================================
// WebhookEditCommand.cs
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex Group
// All rights reserved.
// ==========================================================================
using System;
using System.Collections.Generic;
using Squidex.Domain.Apps.Core.Webhooks;
namespace Squidex.Domain.Apps.Write.Webhooks.Commands
{
public abstract class WebhookEditCommand : WebhookAggregateCommand
{
public Uri Url { get; set; }
public List<WebhookSchema> Schemas { get; set; } = new List<WebhookSchema>();
}
}