ECGPrint/1200Gxml心电图绘制/LocalStorage.cs
2024-12-25 17:24:22 +08:00

23 lines
574 B
C#

using System.Collections.Generic;
using System.Resources;
namespace _1200Gxml心电图绘制
{
public class LocalStorage
{
/// <summary>
/// 翻译支持的语言
/// </summary>
public static Dictionary<string, string> DClanguage = new Dictionary<string, string>();
/// <summary>
/// 当前语言
/// </summary>
public static string CurrentLanguage = "zh-CN";
/// <summary>
/// 语言资源管理器
/// </summary>
public static ResourceManager ResManager;
}
}