Added localization addon

This commit is contained in:
gutii
2026-02-27 19:18:18 +04:00
parent e77894fde6
commit 5a3640bc9f
22 changed files with 172 additions and 61 deletions
+11
View File
@@ -0,0 +1,11 @@
using Microsoft.Extensions.Localization;
using Telegram.Bot.Types;
using Telegrator.Handlers.Components;
namespace Telegrator.Localized
{
public interface ILocalizedHandler<T> : IAbstractUpdateHandler<Message> where T : class
{
public IStringLocalizer LocalizationProvider { get; }
}
}