mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
12 lines
347 B
C#
12 lines
347 B
C#
namespace Kavita.Models.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!;
|
|
}
|