-
Notifications
You must be signed in to change notification settings - Fork 591
Expand file tree
/
Copy pathProduct.cs
More file actions
23 lines (22 loc) · 767 Bytes
/
Copy pathProduct.cs
File metadata and controls
23 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Testing.Models
{
public class Product
{
public int ProductKey { get; set; }
public int ProductSubcategoryKey { get; set; }
public string ProductSKU { get; set; }
public string ProductName { get; set; }
public string ModelName { get; set; }
public string ProductDescription { get; set; }
public string ProductColor { get; set; }
public string ProductSize { get; set; }
public string ProductStyle { get; set; }
public double ProductCost { get; set; }
public double ProductPrice { get; set; }
public IEnumerable<Category> Categories { get; set; }
}
}