Ombi/src/Ombi.Settings/Settings/Models/Notifications/WebhookSettings.cs
2019-11-29 16:47:30 +01:00

9 lines
No EOL
258 B
C#

namespace Ombi.Settings.Settings.Models.Notifications
{
public class WebhookSettings : Settings
{
public bool Enabled { get; set; }
public string WebhookUrl { get; set; }
public string ApplicationToken { get; set; }
}
}