mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-11-25 07:45:02 -05:00
8 lines
207 B
C#
8 lines
207 B
C#
namespace Skeleton.DTOs;
|
|
|
|
public class PasswordResetDto
|
|
{
|
|
public string EmailAddress { get; init; }
|
|
public string ServerConfirmationLink { get; init; }
|
|
public string InstallId { get; init; }
|
|
} |