Files
finder2e_foundry_converter/models/imageitem.cs
T

11 lines
222 B
C#
Raw Normal View History

2026-06-08 10:39:11 -05:00
using Avalonia.Media.Imaging;
2026-06-08 15:18:19 -05:00
namespace finder2e_foundry_converter.Models
2026-06-08 10:39:11 -05:00
{
public class ImageItem
{
public string Path { get; set; } = string.Empty;
public Bitmap? Thumbnail { get; set; }
}
}