mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
12 lines
265 B
C#
12 lines
265 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Kavita.Models.DTOs.Account;
|
|
|
|
public sealed record ConfirmEmailUpdateDto
|
|
{
|
|
[Required]
|
|
public string Email { get; set; } = default!;
|
|
[Required]
|
|
public string Token { get; set; } = default!;
|
|
}
|