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