mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-24 15:25:03 -05:00
8 lines
182 B
C#
8 lines
182 B
C#
namespace API.DTOs.Account;
|
|
|
|
public sealed record ConfirmMigrationEmailDto
|
|
{
|
|
public string Email { get; set; } = default!;
|
|
public string Token { get; set; } = default!;
|
|
}
|