17 lines
468 B
C#
17 lines
468 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs;
|
|
#nullable enable
|
|
|
|
public class RegisterDto
|
|
{
|
|
[Required]
|
|
public string Username { get; init; } = default!;
|
|
/// <summary>
|
|
/// An email to register with. Optional. Provides Forgot Password functionality
|
|
/// </summary>
|
|
public string? Email { get; set; } = default!;
|
|
[Required]
|
|
[StringLength(256, MinimumLength = 6)]
|
|
public string Password { get; set; } = default!;
|
|
}
|