ShadowEditor/ShadowEditor.Model/System/ResetPasswordModel.cs
2019-10-28 20:38:59 +08:00

30 lines
620 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShadowEditor.Model.System
{
/// <summary>
/// 重置密码模型
/// </summary>
public class ResetPasswordModel
{
/// <summary>
/// 用户ID
/// </summary>
public string UserID { get; set; }
/// <summary>
/// 新密码
/// </summary>
public string NewPassword { get; set; }
/// <summary>
/// 确认密码
/// </summary>
public string ConfirmPassword { get; set; }
}
}