7 lines
194 B
C#
7 lines
194 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Authentications.VerifyEmail;
|
|
|
|
public sealed class VerifyEmailRequest
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string Email { get; set; } = default!;
|
|
} |