duheng
2024-10-09 e39f5a762c3401ae38b0c064b10bd4c30effb6e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace HStation.Desktop
{
    /// <summary>
    /// 登录状态
    /// </summary>
    public enum eLoginStatus
    {
        /// <summary>
        /// 取消
        /// </summary>
        Cancel = 0,
 
        /// <summary>
        /// 确定
        /// </summary>
        OK = 1,
    }
}