start working on custom chat handlers

This commit is contained in:
2024-05-29 00:28:17 +03:00
parent 920148e05b
commit 621ce7fbce
7 changed files with 154 additions and 1 deletions
@@ -0,0 +1,19 @@
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 => "";
}
}