namespace API.DTOs.Email; public class ConfirmationEmailDto { public string InvitingUser { get; init; } = default!; public string EmailAddress { get; init; } = default!; public string ServerConfirmationLink { get; init; } = default!; /// /// InstallId of this Kavita Instance /// public string InstallId { get; init; } = default!; }