DocSpace-client/common/Tests/Frontend.Translations.Tests/Models/TranslationFile.cs

17 lines
316 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Frontend.Translations.Tests
{
public class TranslationFile
{
public TranslationFile(string path)
{
Path = path;
}
public string Path { get; }
public List<TranslationItem> Translations { get; set; }
}
}