mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
15 lines
368 B
C#
15 lines
368 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.Account;
|
|
|
|
public sealed record ConfirmPasswordResetDto
|
|
{
|
|
[Required]
|
|
public string Email { get; set; } = default!;
|
|
[Required]
|
|
public string Token { get; set; } = default!;
|
|
[Required]
|
|
[StringLength(256, MinimumLength = 6)]
|
|
public string Password { get; set; } = default!;
|
|
}
|