11 lines
337 B
C#
11 lines
337 B
C#
namespace API.DTOs.Email;
|
|
|
|
public sealed record PasswordResetEmailDto
|
|
{
|
|
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!;
|
|
}
|