mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
20 lines
558 B
C#
20 lines
558 B
C#
using Kruzya.TelegramBot.Core.Options;
|
|
|
|
namespace Kruzya.TelegramBot.CustomChatAddOns.Options
|
|
{
|
|
public class CustomChatHandler : AbstractOption<CustomChatHandler, string>
|
|
{
|
|
public CustomChatHandler(IOptionProvider optionProvider) : base(optionProvider)
|
|
{
|
|
}
|
|
|
|
public override string OptionId => "customChatHandlerUrl";
|
|
|
|
public override string OptionName => "Custom Chat Handler";
|
|
|
|
public override OptionType OptionType => OptionType.Hidden;
|
|
|
|
public override string DefaultValue => "";
|
|
}
|
|
}
|