mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 10:03:12 -04:00
17 lines
364 B
C#
17 lines
364 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Cleanuparr.Api.Features.Auth.Contracts.Requests;
|
|
|
|
public sealed record CreateAccountRequest
|
|
{
|
|
[Required]
|
|
[MinLength(3)]
|
|
[MaxLength(50)]
|
|
public required string Username { get; init; }
|
|
|
|
[Required]
|
|
[MinLength(8)]
|
|
[MaxLength(128)]
|
|
public required string Password { get; init; }
|
|
}
|