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

17 lines
327 B
C#
Raw Normal View History

2021-05-20 15:11:43 +00:00
using System.Collections.Generic;
namespace Frontend.Translations.Tests
{
public class JavaScriptFile
{
public JavaScriptFile(string path)
{
Path = path.Replace("/", "\\");
}
public string Path { get; }
public List<string> TranslationKeys { get; set; }
}
}