From d3b6da0ebdf974b05111cfc3596fbf511d132d09 Mon Sep 17 00:00:00 2001 From: Andriy <30056636+West14@users.noreply.github.com> Date: Fri, 21 Jul 2023 19:27:58 +0300 Subject: [PATCH] [core] this class shouldn't be here --- Core/Test.cs | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Core/Test.cs diff --git a/Core/Test.cs b/Core/Test.cs deleted file mode 100644 index aadf958..0000000 --- a/Core/Test.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System.Threading.Tasks; -using BotFramework; -using BotFramework.Attributes; -using BotFramework.Enums; -using Telegram.Bot; - -namespace Kruzya.TelegramBot.Core; - -public class Test : BotEventHandler -{ - public uint Counter { get; set; } = 5; - - - [Command(InChat.All, "test_state")] - public async Task TestState() - { - Counter++; - await Bot.SendTextMessageAsync(Chat.Id, Counter.ToString()); - } -} \ No newline at end of file