7.2 Starting the Domain Model; e.g. 7.3

chap07
Jason Zhu 2021-08-19 16:45:33 +10:00
parent 044acfc13e
commit c10e333246
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SportsStore.Domain.Entities
{
class Product
{
public int ProductID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public decimal Price { get; set; }
public string Category { get; set; }
}
}