using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataModels.Models { public interface ICartItem : IId { Guid UserId { get; } int Count { get; } DateTime DateCreated { get; set; } Guid ProductId { get; set; } string ProductName { get; set; } bool IsClosed { get; set; } } }