namespace MauiApp1 { public class FileSystemItem { public string Name { get; set; } public string FullName { get; set; } public bool IsDirectory { get; set; } public string Icon => IsDirectory ? "folder.png" : "file.png"; } }