You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Settings/Settings/Models/Notifications/TelegramSettings.cs

10 lines
291 B

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; }
}
}