reformatting

This commit is contained in:
grimsace
2026-06-08 15:53:40 -05:00
parent 99df32cb1f
commit ba5e1ff154
16 changed files with 137 additions and 17 deletions
+10
View File
@@ -0,0 +1,10 @@
using Avalonia.Media.Imaging;
namespace finder2e_foundry_converter.Models
{
public class ImageItem
{
public string Path { get; set; } = string.Empty;
public Bitmap? Thumbnail { get; set; }
}
}