This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Readded CardType with correct casing and fixed .csproj.
pull/463/head
David Britch
7 years ago
parent
b0fa87934e
commit
17bc31a9d5
2 changed files
with
11 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+8
-0
src/eShopOnContainers.Core/Models/Orders/CardType.cs
+3
-0
src/eShopOnContainers.Core/eShopOnContainers.Core.csproj
+ 8
- 0
src/eShopOnContainers.Core/Models/Orders/CardType.cs
View File
@ -0,0 +1,8 @@
namespace
eShopOnContainers.Core.Models.Orders
{
public
class
CardType
{
public
int
Id
{
get
;
set
;
}
public
string
Name
{
get
;
set
;
}
}
}
+ 3
- 0
src/eShopOnContainers.Core/eShopOnContainers.Core.csproj
View File
@ -18,4 +18,7 @@
<PackageReference Include="IdentityModel" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Models\Orders\CardType.CS" />
</ItemGroup>
</Project>
Write
Preview
Loading…
Cancel
Save