11 lines
293 B
C#
11 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; }
|
|
}
|