mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 22:10:33 -04:00
13 lines
394 B
C#
13 lines
394 B
C#
namespace API.DTOs.Email;
|
|
|
|
public sealed record ConfirmationEmailDto
|
|
{
|
|
public string InvitingUser { get; init; } = default!;
|
|
public string EmailAddress { get; init; } = default!;
|
|
public string ServerConfirmationLink { get; init; } = default!;
|
|
/// <summary>
|
|
/// InstallId of this Kavita Instance
|
|
/// </summary>
|
|
public string InstallId { get; init; } = default!;
|
|
}
|