ASPNetCore/TestAppRuna.Entities/Cart.cs

19 lines
453 B
C#
Raw Normal View History

2021-03-24 09:51:02 +00:00
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; }
}
}