using System.ComponentModel.DataAnnotations;
namespace AyCode.Interfaces.Users;
public interface IEmailAddress
{
[MaxLength(150)]
string EmailAddress { get; set; }
//[MaxLength(150)]
//string NormalizedEmail { get; set; }
}