namespace Atomx.Admin.Client.Models
{
public class LoginModel
{
///
/// 登录账号
///
public string Account { get; set; } = string.Empty;
///
/// 登录密码
///
public string Password { get; set; } = string.Empty;
///
/// 地区代码,同时用来识别是否手机登录
///
public string AreaCode { get; set; } = string.Empty;
///
/// 是否记住我
///
public bool SaveMe { get; set; }
}
}