Ombi/Ombi.Core/SettingModels/MattermostNotificationSettings.cs

12 lines
No EOL
304 B
C#

using System;
using Newtonsoft.Json;
namespace Ombi.Core.SettingModels
{
public sealed class MattermostNotificationSettings : NotificationSettings
{
public string WebhookUrl { get; set; }
public string Channel { get; set; }
public string Username { get; set; }
}
}