mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
10 lines
263 B
C#
10 lines
263 B
C#
namespace Skeleton.DTOs;
|
|
|
|
public record ConfirmationEmailDto
|
|
{
|
|
public string InvitingUser { get; init; }
|
|
public string EmailAddress { get; init; }
|
|
public string ServerConfirmationLink { get; init; }
|
|
public string InstallId { get; init; }
|
|
|
|
} |