using AyCode.Interfaces.Entities; using TIAM.Core.Enums; using TIAM.Entities.Profiles; namespace TIAM.Entities.Products; interface IProductBase : IEntityGuid, IProfileRelation { ProductType ProductType { get; set; } //public Guid? UserMediaId { get; set; } Guid ProfileId { get; set; } Profile Profile { get; set; } string Name { get; set; } string Description { get; set; } float Price { get; set; } string? JsonDetails { get; set; } }