This commit is contained in:
2022-05-09 15:59:05 +02:00
parent 0b97eb8780
commit 84ce1818a4
4 changed files with 47 additions and 24 deletions

View File

@@ -6,13 +6,17 @@ using System.Threading.Tasks;
namespace it_projekt
{
class Person
public class Person
{
public string Id { get; set; }
public string Lastname { get; set; }
public string Firstname { get; set; }
public DateTime CreationDate { get; set; }
public Person()
{
}
public Person(string Id, string Lastname, string Firstname, DateTime CreationDate)
{
this.Id = Id;