2023-03-31 15:01:40 +07:00
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Responses.Document
|
|
|
|
|
|
{
|
|
|
|
|
|
public class FileListResponse
|
|
|
|
|
|
{
|
2023-04-03 10:37:37 +07:00
|
|
|
|
public string? Id { get; set; }
|
|
|
|
|
|
|
2023-04-07 11:10:15 +07:00
|
|
|
|
public string? FileName { get; set; } = string.Empty;
|
2023-03-31 15:01:40 +07:00
|
|
|
|
|
2023-04-07 11:10:15 +07:00
|
|
|
|
public string? FileType { get; set; } = string.Empty;
|
2023-03-31 15:01:40 +07:00
|
|
|
|
|
2023-04-07 11:10:15 +07:00
|
|
|
|
public int? FileSize { get; set; }
|
2023-04-09 04:22:04 +07:00
|
|
|
|
|
|
|
|
|
|
public string? Detail { get; set; }
|
2023-03-31 15:01:40 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|