mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move opening image code from Eto to Avalonia.
This commit is contained in:
13
Aaru.Gui/Models/PartitionSchemeModel.cs
Normal file
13
Aaru.Gui/Models/PartitionSchemeModel.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.Collections.ObjectModel;
|
||||
using Avalonia.Media.Imaging;
|
||||
|
||||
namespace Aaru.Gui.Models
|
||||
{
|
||||
public class PartitionSchemeModel : RootModel
|
||||
{
|
||||
public PartitionSchemeModel() => Partitions = new ObservableCollection<PartitionModel>();
|
||||
|
||||
public Bitmap Icon { get; set; }
|
||||
public ObservableCollection<PartitionModel> Partitions { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user