add inital idea, not working! entityframeworkgit add ./git add ./ ahaaaaaha

This commit is contained in:
2022-04-27 11:44:49 +02:00
parent b448dbf23a
commit 37474430c6
7 changed files with 216 additions and 64 deletions

16
Person.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace it_projekt
{
class Person
{
public int Id { get; set; }
public string Lastname { get; set; }
public string Firstname { get; set; }
public DateTime CreationDate { get; set; }
}
}