LANCommander/LANCommander.UI/Components/FileManager/FileManagerFeatures.cs
Pat Hartl 02750d6d62 Improve file manager UX
- Faster enumeration of large directories
- Add toggleable columns
- Add Created and Type columns
- Fix breadcrumbs
- Properly build left view tree with support for cross-platform roots and special folders
2026-05-28 19:54:33 -05:00

17 lines
346 B
C#

namespace LANCommander.UI.Components
{
[Flags]
public enum FileManagerFeatures
{
None = 0,
NavigationBack = 1,
NavigationForward = 2,
UpALevel = 4,
Refresh = 8,
Breadcrumbs = 16,
NewFolder = 32,
UploadFile = 64,
Delete = 128,
ColumnPicker = 256,
}
}