8 lines
263 B
C#
8 lines
263 B
C#
namespace AMREZ.EOP.Contracts.DTOs.Authentications.AddEmailIdentity;
|
|
|
|
public sealed class AddEmailIdentityRequest
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string Email { get; set; } = default!;
|
|
public bool IsPrimary { get; set; } = true;
|
|
} |