[TUI] Implement changing path.

This commit is contained in:
2025-10-15 22:54:35 +01:00
parent a0637e5cac
commit 4fd1338065
4 changed files with 60 additions and 20 deletions

View File

@@ -6,5 +6,6 @@ public class FileModel
{
public string Path { get; set; }
public string Filename { get; set; }
public IBrush ForegroundBrush { get; set; } // Add this property for ListBox Foreground binding
public IBrush ForegroundBrush { get; set; }
public bool IsDirectory { get; set; }
}