Initial git push
This commit is contained in:
16
H_PLUS_Sports/Models/OrderItem.cs
Normal file
16
H_PLUS_Sports/Models/OrderItem.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace H_PLUS_Sports.Models
|
||||
{
|
||||
public partial class OrderItem
|
||||
{
|
||||
public int OrderItemId { get; set; }
|
||||
public int OrderId { get; set; }
|
||||
public string ProductId { get; set; }
|
||||
public int? Quantity { get; set; }
|
||||
|
||||
public virtual Order Order { get; set; }
|
||||
public virtual Product Product { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user