27 lines
564 B
C#
27 lines
564 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace LangGuan.Command.Model.RequestModel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public class RequestUpdateAccount
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Account
|
|||
|
|
/// </summary>
|
|||
|
|
public string Account { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// Pwd
|
|||
|
|
/// </summary>
|
|||
|
|
public string Pwd { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// NewPwd
|
|||
|
|
/// </summary>
|
|||
|
|
public string NewPwd { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|