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

View File

@ -13,5 +13,8 @@ namespace DataDomain
public string LastName { get; set; }
public string NickName { get; set; }
public DateTime? Born { get; set; }
public string Comments { get; set; }
public int HomeAddress { get; set; }
public int InvoiceAddress { get; set; }
}
}