using System.ComponentModel.DataAnnotations; namespace Fengling.Console.Models.Dtos; public class ResetPasswordDto { [Required] [MinLength(6)] public string NewPassword { get; set; } = string.Empty; }