FlorianDahn f021f12486 Update Localization.cs
- change to abstract so it can't be used accidentally
2021-07-27 17:00:16 +02:00

28 lines
470 B
C#

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