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