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