mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[TUI] Added window for images.
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
using Aaru.CommonTypes.Interfaces;
|
||||
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; }
|
||||
public FileInfo? FileInfo { get; set; }
|
||||
public string? Information { 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 IBaseImage? ImageFormat { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user