apu upload file

This commit is contained in:
Kittapath 2023-07-05 10:22:42 +07:00
parent 08ff366b4c
commit 2f49a5b87e
13 changed files with 301 additions and 254 deletions

View file

@ -7,6 +7,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.S3" Version="3.7.107.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.8" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Application.Repositories
{
public class FileDownloadResponse
{
public string FileName { get; set; } = string.Empty;
public string FileType { get; set; } = string.Empty;
public byte[] FileContent { get; set; }
}
}