Add colors.

This commit is contained in:
2025-10-15 22:05:55 +01:00
parent b48507b6d0
commit fa28824ae8
5 changed files with 85 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
using Avalonia.Media;
namespace Aaru.Tui.Models;
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
}