mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
11 lines
269 B
C#
11 lines
269 B
C#
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; }
|
|
public bool IsDirectory { get; set; }
|
|
} |