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