using System; using System.Collections.Generic; using ZigBee.Device; namespace Shared.Phone { /// /// 个人中心的Resourse /// public class HdlUserCenterResourse { /// /// 用户登录的信息缓存,切换到个人中心主界面时,就会刷新 /// public static UserInformation UserInfo = new UserInformation(); /// /// 账号的设置信息 /// public static AccountOptionClass AccountOption = new AccountOptionClass(); /// /// 住宅的设置信息 /// public static ResidenceOptionClass ResidenceOption = new ResidenceOptionClass(); /// /// 隐匿配置 /// public static HideOptionInfo HideOption = new HideOptionInfo(); /// /// 文件加密秘钥 /// public const string FileEncryptKey = "4^Olh_3f"; /// /// 单斜杠的转义字符 /// public const string slash = "\\"; /// /// 双引号的转义字符 /// public const string douMarks = "\""; } }