AyCode.Core/AyCode.Interfaces/Users/IEmailAddress.cs

12 lines
245 B
C#

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