mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-19 13:34:15 -04:00
13 lines
387 B
C#
13 lines
387 B
C#
namespace API.DTOs.Email;
|
|
|
|
public sealed record EmailMigrationDto
|
|
{
|
|
public string EmailAddress { get; init; } = default!;
|
|
public string Username { get; init; } = default!;
|
|
public string ServerConfirmationLink { get; init; } = default!;
|
|
/// <summary>
|
|
/// InstallId of this Kavita Instance
|
|
/// </summary>
|
|
public string InstallId { get; init; } = default!;
|
|
}
|