11 lines
287 B
C#
11 lines
287 B
C#
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; }
|
|
}
|
|
}
|