mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
30 lines
620 B
C#
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; }
|
|
}
|
|
}
|