You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.2 KiB
C#

using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Txgy.EWS.Client.Models
{
public class ResgiterUserModel: BindableBase
{
private string _userName;
public string UserName
{
get { return _userName; }
set
{
_userName = value;
SetProperty(ref _userName, value);
}
}
private string _account;
public string Account
{
get { return _account; }
set
{
_account = value;
SetProperty(ref _account, value);
}
}
private string _passWord;
public string PassWord
{
get { return _passWord; }
set
{
_passWord = value;
SetProperty(ref _passWord, value);
}
}
private string _newpassWord;
public string NewPassWord
{
get { return _newpassWord; }
set
{
_newpassWord = value;
SetProperty(ref _newpassWord, value);
}
}
}
}