using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.Dto { public class UserDto : BaseDto { public UserDto() { } private int id; public int Id { get { return id; } set { id = value; OnPropertyChanged(); } } /// /// Desc: /// Default: /// Nullable:True /// private string userName; public string UserName { get { return userName; } set { userName = value; OnPropertyChanged(); } } private string password; public string Password { get { return password; } set { password = value; OnPropertyChanged(); } } private string description; public string Description { get { return description; } set { description = value; OnPropertyChanged(); } } } }