mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-12 08:16:05 -07:00
12 lines
No EOL
304 B
C#
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; }
|
|
}
|
|
} |