Add Explorer Workbench with hierarchical, off-UI Storage analysis.
Storage queries run in the background with cancellation and covering indexes so switching views no longer freezes the UI. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
10
src/Explorer.Application/AppOptions.cs
Normal file
10
src/Explorer.Application/AppOptions.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Explorer.Domain;
|
||||
|
||||
namespace Explorer.Application;
|
||||
|
||||
public sealed class AppOptions
|
||||
{
|
||||
public int TombstoneRetentionDays { get; set; } = AppConstants.DefaultTombstoneRetentionDays;
|
||||
public bool SkipHidden { get; set; } = true;
|
||||
public bool SkipSystem { get; set; } = true;
|
||||
}
|
||||
Reference in New Issue
Block a user