Add project files.
This commit is contained in:
		| @@ -0,0 +1,9 @@ | ||||
| <Project Sdk="Microsoft.NET.Sdk"> | ||||
|  | ||||
|   <PropertyGroup> | ||||
|     <TargetFramework>net8.0</TargetFramework> | ||||
|     <ImplicitUsings>enable</ImplicitUsings> | ||||
|     <Nullable>enable</Nullable> | ||||
|   </PropertyGroup> | ||||
|  | ||||
| </Project> | ||||
							
								
								
									
										13
									
								
								Core.Blueprint.Service.Domain/Dtos/SampleImageUrlDto.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								Core.Blueprint.Service.Domain/Dtos/SampleImageUrlDto.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.Threading.Tasks; | ||||
|  | ||||
| namespace Core.Blueprint.Service.Domain.Dtos | ||||
| { | ||||
|     public class SampleImageUrlDto | ||||
|     { | ||||
|         public string Url { get; set; } | ||||
|     } | ||||
| } | ||||
| @@ -0,0 +1,14 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.Threading.Tasks; | ||||
|  | ||||
| namespace Core.Blueprint.Service.Domain.Entities | ||||
| { | ||||
|     public class BlobSampleImageEntity | ||||
|     { | ||||
|         public Guid? Id { get; set; } | ||||
|         public byte[] FileContent { get; set; } = []; | ||||
|     } | ||||
| } | ||||
							
								
								
									
										13
									
								
								Core.Blueprint.Service.Domain/Entities/SecretEntity.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								Core.Blueprint.Service.Domain/Entities/SecretEntity.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.Threading.Tasks; | ||||
|  | ||||
| namespace Core.Blueprint.Service.Domain.Entities | ||||
| { | ||||
|     public class SecretEntity | ||||
|     { | ||||
|         public string? Value { get; set; } | ||||
|     } | ||||
| } | ||||
| @@ -0,0 +1,17 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.Threading.Tasks; | ||||
|  | ||||
| namespace Core.Blueprint.Service.Domain.Entities | ||||
| { | ||||
|     public class SqlSampleItemEntity | ||||
|     { | ||||
|         public string? Id { get; set; } | ||||
|         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; | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin