Initial git push
This commit is contained in:
22
H_PLUS_Sports/Models/Product.cs
Normal file
22
H_PLUS_Sports/Models/Product.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace H_PLUS_Sports.Models
|
||||
{
|
||||
public partial class Product
|
||||
{
|
||||
public Product()
|
||||
{
|
||||
OrderItem = new HashSet<OrderItem>();
|
||||
}
|
||||
|
||||
public string ProductId { get; set; }
|
||||
public string ProductName { get; set; }
|
||||
public int? Size { get; set; }
|
||||
public string Variety { get; set; }
|
||||
public decimal? Price { get; set; }
|
||||
public string Status { get; set; }
|
||||
|
||||
public virtual ICollection<OrderItem> OrderItem { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user