hrms-api-exam/Response/Document/FileListResponse.cs

14 lines
318 B
C#
Raw Normal View History

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