using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestAppRuna.Entities { public class Product { public Guid ProductID { get; set; } public string Name { get; set; } public decimal Price { get; set; } public ICollection Carts { get; set; } } }