mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
20 lines
942 B
C#
20 lines
942 B
C#
using System.Collections.ObjectModel;
|
|
using Aaru.CommonTypes.Interfaces;
|
|
using Aaru.Gui.ViewModels.Panels;
|
|
using Avalonia.Media.Imaging;
|
|
|
|
namespace Aaru.Gui.Models
|
|
{
|
|
public class ImageModel
|
|
{
|
|
public ImageModel() => PartitionSchemesOrFileSystems = new ObservableCollection<RootModel>();
|
|
|
|
public string Path { get; set; }
|
|
public string FileName { get; set; }
|
|
public Bitmap Icon { get; set; }
|
|
public ObservableCollection<RootModel> PartitionSchemesOrFileSystems { get; }
|
|
public IMediaImage Image { get; set; }
|
|
public ImageInfoViewModel ViewModel { get; set; }
|
|
public IFilter Filter { get; set; }
|
|
}
|
|
} |