Added some migration, address object

This commit is contained in:
2021-03-07 08:39:52 +01:00
parent bd20b3b9d3
commit f7dc96cd5f
7 changed files with 247 additions and 0 deletions

18
DataDomain/Address.cs Normal file
View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataDomain
{
public class Address
{
public int Id { get; set; }
public string Gata { get; set; }
public string Gata2 { get; set; }
public int PostNr { get; set; }
public string PostOrt { get; set; }
public string Nation { get; set; }
}
}