first commit

This commit is contained in:
Suphonchai Phoonsawat 2023-03-13 12:29:56 +07:00
commit f797ff3e50
228 changed files with 25555 additions and 0 deletions

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Recruit.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; }
}
}