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>
11 lines
288 B
C#
11 lines
288 B
C#
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;
|
|
}
|