c# project conversion

This commit is contained in:
grimsace
2026-06-08 10:39:11 -05:00
parent 00c32d5cbe
commit 22c2ef78fd
16 changed files with 750 additions and 499 deletions
+10
View File
@@ -0,0 +1,10 @@
using Avalonia.Media.Imaging;
namespace Finder2eFoundryConverterCS.Models
{
public class ImageItem
{
public string Path { get; set; } = string.Empty;
public Bitmap? Thumbnail { get; set; }
}
}