wxr
2024-12-02 ea0b1e8e5f43c5fd0a7d479e25ede3b8cbea464a
HDL_ON/Common/OnAppConfig.cs
@@ -71,12 +71,40 @@
            }
        }
        string pushSignStr;
        /// <summary>
        ///
        /// </summary>
        public string PushSignStr
        {
            get
            {
                if (string.IsNullOrEmpty(pushSignStr))
                {
                    pushSignStr = DateTime.Now.Ticks.ToString();
                }
                return pushSignStr;
            }
            set
            {
                pushSignStr = value;
            }
        }
        /// <summary>
        /// 字体放大
        /// </summary>
        public int FontAmplify = 3;
        /// <summary>
        /// 存储登录过的用户
        /// </summary>
        public List<UserAccount> UserList = new List<UserAccount>();
        #region 服务器数据
        public RequestHostType HostType = RequestHostType.ONLINE;
        public string _RequestHttpsHost = "https://china.hdlcontrol.com";
        /// <summary>
        ///  账号注册服务器信息
@@ -170,4 +198,11 @@
        public DateTime LoginTime = DateTime.MinValue;
    }
    public enum RequestHostType
    {
        ONLINE,
        TEST,
        DEV,
    }
}