First day

This commit is contained in:
2015-06-18 10:52:10 +02:00
parent b28cbf7ad2
commit 1a61a2a7f7
36 changed files with 1566 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace StoreData
{
public class Product
{
public decimal Price { get; set; }
public string Name { get; set; }
}
}