mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
15 lines
490 B
C#
15 lines
490 B
C#
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 IMediaImage? ImageFormat { get; set; }
|
|
} |