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; }