11 lines
277 B
C#
11 lines
277 B
C#
namespace BMA.EHR.Recurit.Exam.Service.Responses.Document
|
|
{
|
|
public class FileListResponse
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
public string FileType { get; set; } = string.Empty;
|
|
|
|
public int FileSize { get; set; }
|
|
}
|
|
}
|