namespace BTCPayServer.Plugins.Webhooks.Views; /// /// Used to represent available webhooks with their descriptions in the ModifyWebhook view /// /// The webhook type /// User friendly description public class AvailableWebhookViewModel(string type, string description) { public string Type { get; } = type; public string Description { get; } = description; }