28 lines
461 B
C#
28 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TelegramBotBase.Localizations
|
|
{
|
|
public class Localization
|
|
{
|
|
public Dictionary<String, String> Values = new Dictionary<string, string>();
|
|
|
|
public String this[String key]
|
|
{
|
|
get
|
|
{
|
|
return Values[key];
|
|
}
|
|
}
|
|
|
|
public Localization()
|
|
{
|
|
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|