namespace Atomx.Common.Models { public class LocalizationFile { /// /// 本地化文件版本 /// public string ResourceVersion { get; set; } = string.Empty; /// /// 本地化译文 /// public Dictionary Translations { get; set; } = new(); } }