mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
16 lines
572 B
C#
16 lines
572 B
C#
|
|
using System.Collections.ObjectModel;
|
||
|
|
using Aaru.CommonTypes;
|
||
|
|
using Avalonia.Media.Imaging;
|
||
|
|
|
||
|
|
namespace Aaru.Gui.Models
|
||
|
|
{
|
||
|
|
public class PartitionModel
|
||
|
|
{
|
||
|
|
public PartitionModel() => FileSystems = new ObservableCollection<FileSystemModel>();
|
||
|
|
|
||
|
|
public string Name { get; set; }
|
||
|
|
public Bitmap Icon { get; set; }
|
||
|
|
public ObservableCollection<FileSystemModel> FileSystems { get; }
|
||
|
|
public Partition Partition { get; set; }
|
||
|
|
}
|
||
|
|
}
|