PDF könyvtár letöltése

This commit is contained in:
2025-04-16 13:29:07 +02:00
parent a1d683b955
commit 5acf9ff954
10 changed files with 279 additions and 4 deletions
@@ -0,0 +1,16 @@
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; }
}
}