12 lines
360 B
C#
Raw Normal View History

2025-12-17 11:12:13 +08:00
namespace YD_Event.Application.User.Dtos;
2025-12-17 10:32:52 +08:00
public class ResetPasswordInput : KeyDto
{
/// <summary>
/// 密码
/// </summary>
[Required(ErrorMessage = "密码为必填项")]
[MaxLength(16, ErrorMessage = "密码限制16个字符内")]
[MinLength(6, ErrorMessage = "密码至少6位字符")]
public string Password { get; set; }
}