[TUI] Identify partitions.

This commit is contained in:
2025-10-16 11:43:03 +01:00
parent 28b59e8535
commit 2f885affe7
6 changed files with 107 additions and 13 deletions

View File

@@ -5,11 +5,11 @@ 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; }
public FileInfo? FileInfo { get; set; }
public string? Information { get; set; }
public IBaseImage? ImageFormat { get; set; }
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; }
public string? Information { get; set; }
public IMediaImage? ImageFormat { get; set; }
}