mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 13:44:31 -04:00
13 lines
292 B
C#
13 lines
292 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class ResetPasswordDto
|
|
{
|
|
[Required]
|
|
public string UserName { get; init; }
|
|
[Required]
|
|
[StringLength(8, MinimumLength = 4)]
|
|
public string Password { get; init; }
|
|
}
|
|
} |