YD_XinWei.Api/YD_XinWei.Commons/Dto/Teacher/ModifyTeacherPwdDto.cs

30 lines
619 B
C#
Raw Normal View History

2025-01-13 21:06:59 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_XinWei.Commons.Dto.Teacher
{
/// <summary>
/// 老师端修改密码
/// </summary>
public class ModifyTeacherPwdDto
{
/// <summary>
/// 新密码
/// </summary>
public string NewrPwd { get; set; }
/// <summary>
/// 旧密码
/// </summary>
public string OldPwd { get; set; }
/// <summary>
/// 确认密码
/// </summary>
public string ConfirmPwd{ get; set; }
}
}