16 lines
387 B
C#
16 lines
387 B
C#
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 IEmailAddress
|
|
{
|
|
[MaxLength(150)]
|
|
string EmailAddress { get; set; }
|
|
|
|
//[MaxLength(150)]
|
|
//string NormalizedEmail { get; set; }
|
|
} |