2024 reopening

This commit is contained in:
MaddoScientisto 2024-10-14 18:54:30 +02:00
commit 99b67870a5
73 changed files with 27484 additions and 417 deletions

View file

@ -0,0 +1,13 @@
using System.Collections.Generic;
using System.Drawing;
using System.IO;
namespace ImageCatalog
{
public class LoadBuffer
{
public List<Image> imageList = new List<Image>();
public List<FileInfo> picSourceList = new List<FileInfo>();
public List<List<FileInfo>> dirSourceList = new List<List<FileInfo>>();
}
}