mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
12 lines
255 B
C#
12 lines
255 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace API.DTOs.Account;
|
|
|
|
public sealed record ConfirmEmailUpdateDto
|
|
{
|
|
[Required]
|
|
public string Email { get; set; } = default!;
|
|
[Required]
|
|
public string Token { get; set; } = default!;
|
|
}
|