hrms-api-backend/BMA.EHR.API.Command/FileDownloadResponse.cs
2023-07-05 10:22:42 +07:00

11 lines
259 B
C#

namespace BMA.EHR.API.Command
{
public class FileDownloadResponse
{
public string FileName { get; set; } = string.Empty;
public string FileType { get; set; } = string.Empty;
public byte[] FileContent { get; set; }
}
}