mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-30 19:54:14 -04:00
13 lines
293 B
C#
13 lines
293 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class ResetPasswordDto
|
|
{
|
|
[Required]
|
|
public string UserName { get; init; }
|
|
[Required]
|
|
[StringLength(32, MinimumLength = 6)]
|
|
public string Password { get; init; }
|
|
}
|
|
} |