12 lines
310 B
C#
12 lines
310 B
C#
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; }
|
|
}
|
|
}
|