// ========================================================================== // CreateWebhookDto.cs // Squidex Headless CMS // ========================================================================== // Copyright (c) Squidex Group // All rights reserved. // ========================================================================== using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Squidex.Controllers.Api.Webhooks.Models { public class CreateWebhookDto { /// /// The url of the webhook. /// [Required] public Uri Url { get; set; } /// /// The schema settings. /// [Required] public List Schemas { get; set; } } }