mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04: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!;
|
|
}
|