19 lines
453 B
C#
19 lines
453 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TestAppRuna.Entities
|
|
{
|
|
public class Cart
|
|
{
|
|
public long CartID { get; set; }
|
|
public Guid CustomerID { get; set; }
|
|
public Guid ProductID { get; set; }
|
|
public int Quantity { get; set; }
|
|
public Customer Customer { get; set; }
|
|
public Product Product { get; set; }
|
|
}
|
|
}
|