elsa-core/src/modules/Elsa.Webhooks/Options/WebhookOptions.cs
Sipke Schoorstra 6994f2e24d
Webhooks (#3598)
* Incremental work

* Implement samples

* Update samples

* Small refactorings

Closes #3592
2023-01-05 13:55:08 +01:00

14 lines
361 B
C#

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