Files
WorkFlowCheck/src/WorkFlowCheck.Common/DTO/PDFFileDTO.cs
T
2025-04-16 13:29:07 +02:00

17 lines
375 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.DTO
{
public class PDFFileDTO
{
public string Id { get; set; }
public string FileName { get; set; }
public string FileSize { get; set; }
public string CreateDate { get; set; }
}
}