mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
🚧 RSS as a module
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using BotFramework;
|
||||
using Kruzya.TelegramBot.RichSiteSummary.Data;
|
||||
|
||||
namespace Kruzya.TelegramBot.RichSiteSummary.Handler
|
||||
{
|
||||
public abstract class AbstractHandler : BotEventHandler
|
||||
{
|
||||
protected readonly RichSiteSummaryContext _dbContext;
|
||||
|
||||
protected AbstractHandler(RichSiteSummaryContext dbContext)
|
||||
{
|
||||
_dbContext = dbContext;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user