13 lines
275 B
C#
13 lines
275 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TelegramBotBase.Localizations
|
|
{
|
|
public abstract class Localization
|
|
{
|
|
public Dictionary<string, string> Values = new Dictionary<string, string>();
|
|
|
|
public string this[string key] => Values[key];
|
|
}
|
|
}
|
|
|