Fényképek letöltése programból

This commit is contained in:
2025-04-16 12:34:00 +02:00
parent 335f00367d
commit a1d683b955
10 changed files with 326 additions and 6 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 ImageFileDTO
{
public string Id { get; set; }
public string FileName { get; set; }
public string FileSize { get; set; }
public string CreateDate { get; set; }
}
}