set minio service

This commit is contained in:
Kittapath 2023-03-31 12:11:23 +07:00
parent c76f29934b
commit 3ff5a4fa46
18 changed files with 2171 additions and 453 deletions

View file

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