using AyCode.Interfaces.Addresses; using AyCode.Interfaces.Entities; using AyCode.Interfaces.MediaInfo; namespace AyCode.Interfaces.Profiles.Dtos; public interface IAcProfileDtoBase : IEntityGuid, IAcProfileName, IMediaInfo, IAcAddressForeignKey { string? Description { get; set; } }