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