2026-02-27 19:18:18 +04:00
|
|
|
using Microsoft.Extensions.Localization;
|
|
|
|
|
using Telegram.Bot.Types;
|
2026-03-06 23:19:24 +04:00
|
|
|
using Telegrator.Core.Handlers;
|
2026-02-27 19:18:18 +04:00
|
|
|
|
|
|
|
|
namespace Telegrator.Localized
|
|
|
|
|
{
|
|
|
|
|
public interface ILocalizedHandler<T> : IAbstractUpdateHandler<Message> where T : class
|
|
|
|
|
{
|
|
|
|
|
public IStringLocalizer LocalizationProvider { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|