Removed doubled filters variations for reply-chain message filtering

Instead using MessageRepliedAttribute to filter messages in reply-chain
Old types renamed to new framework name
This commit is contained in:
2025-07-25 01:26:32 +04:00
parent b60b4c5f01
commit 78c7f41489
26 changed files with 158 additions and 1458 deletions
+6 -3
View File
@@ -39,8 +39,11 @@ Telegrator is a next-generation framework for building Telegram bots in C#, insp
### 1. Installation
```shell
# Coming soon: will be available via NuGet
# dotnet add package Telegrator
# .NET CLI
dotnet add package Telegrator
# NuGet CLI
NuGet\Install-Package Telegrator
```
### 2. Minimal Bot Example
@@ -59,7 +62,7 @@ public class HelloHandler : MessageHandler
}
// Registration and launch:
var bot = new ReactiveClient("<YOUR_BOT_TOKEN>");
var bot = new TelegratorClient("<YOUR_BOT_TOKEN>");
bot.Handlers.AddHandler<HelloHandler>();
bot.StartReceiving();
```