1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- 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(); }
- }
-
- /// <summary>
- /// Desc:
- /// Default:
- /// Nullable:True
- /// </summary>
- 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(); }
- }
- }
- }
|