Added some initiating data for working further in this projekt

This commit is contained in:
2019-11-12 23:11:19 +01:00
parent 387bb252d1
commit 9d861108d3
14 changed files with 572 additions and 1 deletions

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CodeFirstExistingDatabase
{
public class Category
{
public int Id { get; set; }
public string Name { get; set; }
}
}