14 lines
No EOL
331 B
C#
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; }
|
|
}
|
|
} |