mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 11:38:32 -07:00
10 lines
No EOL
291 B
C#
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; }
|
|
}
|
|
} |