DocSpace-buildtools/common/Tests/Frontend.Translations.Tests/Models/TranslationItem.cs

21 lines
407 B
C#

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; }
}
}