Listing 7-3 Fixed typo

This commit is contained in:
Jason Zhu 2021-09-08 10:27:04 +10:00
parent a8d6357a25
commit a6eb8237d4
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace SportsStore.Domain.Entities
{
class Products
public class Product
{
public int ProductID { get; set; }
public string Name { get; set; }

View File

@ -63,7 +63,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Entities\Products.cs" />
<Compile Include="Entities\Product.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>