using System.Collections.Generic;
namespace LocalizationTool.Models
{
/// 一个语言包:对应目录下某个 .json 文件。
public class PackFile
{
public string FilePath { get; set; }
public string LanguageCode { get; set; }
public string LanguageName { get; set; }
public string Version { get; set; }
public string Author { get; set; }
public bool IsSource { get; set; }
public Dictionary Translations { get; set; } = new Dictionary();
}
}