12 lines
272 B
C#
12 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; }
|
|||
|
|
}
|
|||
|
|
}
|