mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-07 21:51:13 -07:00
13 lines
No EOL
348 B
C#
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; }
|
|
}
|
|
} |