[TUI] Detect filesystems.

This commit is contained in:
2025-10-16 11:57:23 +01:00
parent 2f885affe7
commit 7ace157e05
5 changed files with 51 additions and 12 deletions

View File

@@ -1,5 +1,6 @@
using System.Collections.ObjectModel;
using Aaru.CommonTypes;
using Aaru.CommonTypes.Interfaces;
namespace Aaru.Tui.Models;
@@ -13,7 +14,8 @@ public class FileSystemModelNode
SubNodes = subNodes;
}
public ObservableCollection<FileSystemModelNode>? SubNodes { get; }
public string Title { get; }
public Partition? Partition { get; set; }
public ObservableCollection<FileSystemModelNode>? SubNodes { get; set; }
public string Title { get; }
public Partition? Partition { get; set; }
public IFilesystem? Filesystem { get; set; }
}