using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UsersCurrent;
///
/// 当前用户修改密码输入.
///
[SuppressSniffer]
public class UsersCurrentActionsModifyPasswordInput
{
///
/// 旧密码.
///
public string oldPassword { get; set; }
///
/// 密码.
///
public string password { get; set; }
///
/// 验证码.
///
public string code { get; set; }
///
/// 验证码时间戳.
///
public string timestamp { get; set; }
}