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