using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Frontend.Translations.Tests { public class TranslationItem { public TranslationItem(string key, string value) { Key = key; Value = value; } public string Key { get; } public string Value { get; } } }