using Elsa.Webhooks.Models;
namespace Elsa.Webhooks.Options;
///
/// Provides various options related to webhooks.
///
public class WebhookOptions
{
///
/// Stores a list of webhook registrations.
///
public ICollection Endpoints { get; set; } = new List();
}