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; } } }