This commit is contained in:
Roland Fieger
2021-08-28 13:11:33 +02:00
parent 074df0adec
commit 2de05c3856
47 changed files with 2110 additions and 229 deletions

View File

@@ -0,0 +1,18 @@
using System;
using Datamodels.Lookups;
namespace Datamodels.DatabaseModels
{
public class Address: IEntityClass
{
public long Id { get; set; }
public string StreetName { get; set; }
public int StreetNumber { get; set; }
public string Zip { get; set; }
public string City { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime ChangedAt { get; set; }
public LookupValue AddressType { get; set; } //something like "Job" or "Private"
public Person Person { get; set; }
}
}