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; }