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

13 lines
383 B
C#
Raw Normal View History

2025-10-15 22:05:55 +01:00
using Avalonia.Media;
namespace Aaru.Tui.Models;
public class FileModel
{
2025-10-16 00:13:02 +01:00
public string Path { get; set; }
public string Filename { get; set; }
public IBrush ForegroundBrush { get; set; }
public bool IsDirectory { get; set; }
public FileInfo? FileInfo { get; set; }
2025-10-16 01:15:13 +01:00
public string? Information { get; set; }
2025-10-15 22:05:55 +01:00
}