AyCode.Core/AyCode.Interfaces/Profiles/Dtos/IAcProfileDtoBase.cs

15 lines
448 B
C#

using AyCode.Interfaces.Addresses;
using AyCode.Interfaces.Entities;
using AyCode.Interfaces.MediaInfo;
using AyCode.Interfaces.Users;
using System.ComponentModel.DataAnnotations;
namespace AyCode.Interfaces.Profiles.Dtos;
public interface IAcProfileDtoBase : IEntityGuid, IAcProfileName, IMediaInfo, IAcAddressForeignKey//, IAcEmailAddress
{
[MaxLength(150)]
string? EmailAddress { get; set; }
string? Description { get; set; }
}