mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-16 23:01:05 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
8 lines
192 B
C#
8 lines
192 B
C#
namespace Kavita.Models.DTOs.Account;
|
|
|
|
public sealed record ConfirmMigrationEmailDto
|
|
{
|
|
public string Email { get; set; } = default!;
|
|
public string Token { get; set; } = default!;
|
|
}
|