สร้าง api อัพเอกสาร

This commit is contained in:
Kittapath 2023-03-31 15:01:40 +07:00
parent 3ff5a4fa46
commit 15e4d21a6f
13 changed files with 3037 additions and 5 deletions

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Recurit.Exam.Service.Responses.Document
{
public class FileListResponse
{
public string FileName { get; set; } = string.Empty;
public string FileType { get; set; } = string.Empty;
public int FileSize { get; set; }
}
}