Initial
This commit is contained in:
		
							
								
								
									
										20
									
								
								Datamodels/DatabaseModels/Person.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								Datamodels/DatabaseModels/Person.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using Datamodels.Lookups; | ||||
|  | ||||
| namespace Datamodels.DatabaseModels | ||||
| { | ||||
|     public class Person | ||||
|     { | ||||
|         public long Id { get; set; } | ||||
|         public string LastName { get; set; } | ||||
|         public string FirstName { get; set; } | ||||
|         public DateTime? Birthday { get; set; } | ||||
|         public bool IsActive { get; set; } | ||||
|         public DateTime CreatedAt { get; set; } | ||||
|         public DateTime ChangedAt { get; set; } | ||||
|         public LookupValue Gender { get; set; } | ||||
|         public List<Address> Addresses { get; set; } | ||||
|         public List<Communication> Communications { get; set; } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user