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