30 lines
619 B
C#
30 lines
619 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|