using AyCode.Entities.Interfaces;
using AyCode.Interfaces;
using AyCode.Interfaces.TimeStampInfo;
namespace AyCode.Entities.Profiles;
public interface IProfileBase : IEntityGuid, IOwnerId, ITimeStampInfo
{
Guid UserMediaId { get; set; }
}