Shuxia Ning
2025-01-08 687a3dfd095bc8c099b7fa6e65f0dc699fdc8f1d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using System.ComponentModel.DataAnnotations;
using Yw.Vmo;
 
namespace HStation.WinFrmUI
{
    public class UserAccountViewModel
    {
        public UserAccountViewModel()
        { }
 
        public UserAccountViewModel(Yw.Vmo.UserLoginAccountStd rhs)
        {
            this.ID = rhs.ID;
            this.LoginType = rhs.LoginType;
            this.Identifier = rhs.Identifier;
            this.IfVerified = rhs.IfVerified;
        }
 
        /// <summary>
        /// ID
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 登录类型
        /// </summary>
        [Display(Name = "登录类型")]
        public string LoginType { get; set; }
 
        /// <summary>
        /// 登录账户
        /// </summary>
        [Display(Name = "登录账户")]
        public string Identifier { get; set; }
 
        /// <summary>
        /// 是否验证
        /// </summary>
        [Display(Name = "是否验证")]
        public bool IfVerified { get; set; }
    }
}