Ombi/src/Ombi.Settings/Settings/Models/Notifications/TelegramSettings.cs

10 lines
No EOL
291 B
C#

namespace Ombi.Settings.Settings.Models.Notifications
{
public class TelegramSettings : Settings
{
public bool Enabled { get; set; }
public string BotApi { get; set; }
public string ChatId { get; set; }
public string ParseMode { get; set; }
}
}