| 12345678910111213141516 |
- using System.Collections.Generic;
- namespace LocalizationTool.Models
- {
- /// <summary>一个语言包:对应目录下某个 .json 文件。</summary>
- 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<string, string> Translations { get; set; } = new Dictionary<string, string>();
- }
- }
|