mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 05:34:21 -04:00
13 lines
285 B
C#
13 lines
285 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class RegisterDto
|
|
{
|
|
[Required]
|
|
public string Username { get; set; }
|
|
[Required]
|
|
[StringLength(8, MinimumLength = 4)]
|
|
public string Password { get; set; }
|
|
}
|
|
} |