Add project files.
This commit is contained in:
		
							
								
								
									
										17
									
								
								Core.Blueprint.Domain/Entities/SampleItem.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								Core.Blueprint.Domain/Entities/SampleItem.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| using System.ComponentModel.DataAnnotations.Schema; | ||||
|  | ||||
| namespace Core.Blueprint.Domain.Entities | ||||
| { | ||||
|     [Table("Blueprint_Test01")]  | ||||
|     public class SampleItem : AbsEntity | ||||
|     { | ||||
|         public Guid Id { get; set; } = Guid.NewGuid(); | ||||
|         public string TestName { get; set; } = string.Empty; | ||||
|         public char StatusCode { get; set; } = 'P'; | ||||
|         public int NumValue { get; set; } = 0; | ||||
|         public DateTime CreatedAt { get; set; } = DateTime.Now; | ||||
|     } | ||||
| } | ||||
|  | ||||
|  | ||||
| //User - Project | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin