10 lines
213 B
C#
10 lines
213 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Report.Service.Requests
|
|
{
|
|
public class FileRequest
|
|
{
|
|
public List<FormFile>? File { get; set; }
|
|
}
|
|
}
|