[TUI] Add filesystem information display in image window

This commit is contained in:
2025-10-16 12:55:52 +01:00
parent 8f7ace0e36
commit bcb202fc75
3 changed files with 52 additions and 4 deletions

View File

@@ -14,8 +14,9 @@ public class FileSystemModelNode
SubNodes = subNodes;
}
public ObservableCollection<FileSystemModelNode>? SubNodes { get; set; }
public string Title { get; }
public Partition? Partition { get; set; }
public IFilesystem? Filesystem { get; set; }
public ObservableCollection<FileSystemModelNode>? SubNodes { get; set; }
public string Title { get; }
public Partition? Partition { get; set; }
public IFilesystem? Filesystem { get; set; }
public string? FilesystemInformation { get; set; }
}