Readded CardType with correct casing and fixed .csproj.

This commit is contained in:
David Britch 2018-01-12 16:10:12 +00:00
parent b0fa87934e
commit 17bc31a9d5
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,8 @@
namespace eShopOnContainers.Core.Models.Orders
{
public class CardType
{
public int Id { get; set; }
public string Name { get; set; }
}
}

View File

@ -18,4 +18,7 @@
<PackageReference Include="IdentityModel" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Models\Orders\CardType.CS" />
</ItemGroup>
</Project>