10 lines
No EOL
263 B
C#
10 lines
No EOL
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; }
|
|
|
|
} |