Ombi/Ombi.Core/SettingModels/MattermostNotificationSettings.cs

13 lines
No EOL
348 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; }
public string IconUrl { get; set; }
}
}