Kavita/API/DTOs/RegisterDto.cs
2021-06-03 07:16:32 -05:00

14 lines
No EOL
331 B
C#

using System.ComponentModel.DataAnnotations;
namespace API.DTOs
{
public class RegisterDto
{
[Required]
public string Username { get; init; }
[Required]
[StringLength(32, MinimumLength = 6)]
public string Password { get; init; }
public bool IsAdmin { get; init; }
}
}