11 lines
272 B
C#
11 lines
272 B
C#
namespace BMA.EHR.Application.Repositories
|
|
{
|
|
public class FileDownloadResponse
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
public string FileType { get; set; } = string.Empty;
|
|
|
|
public byte[] FileContent { get; set; }
|
|
}
|
|
}
|