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;
}
///
/// ID
///
public long ID { get; set; }
///
/// 登录类型
///
[Display(Name = "登录类型")]
public string LoginType { get; set; }
///
/// 登录账户
///
[Display(Name = "登录账户")]
public string Identifier { get; set; }
///
/// 是否验证
///
[Display(Name = "是否验证")]
public bool IfVerified { get; set; }
}
}