Files
Aaru/Aaru.Tui/Models/FileModel.cs

10 lines
273 B
C#
Raw Normal View History

2025-10-15 22:05:55 +01:00
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
}