using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YG.DefaultList
{
public class StringnamAndValue
{
public string name { get; set; } = "";
}
public class UserDefualtList : Notify
{
///
/// 用户名
///
public string username { get; set; } = "";
///
/// 密码
///
public string pwd { get; set; } = "";
///
/// 是否时管理
///
public bool ismanage { get; set; } = false;
///
/// 是否启用账户
///
public bool isenable { get; set; } = true;
///
/// 是否时管理者
///
public int Role { get; set; } = 2;
}
}