Added temporary storage of guids of collections to be wiped on bootup when crash/reload

This commit is contained in:
cake
2025-12-26 19:39:14 +01:00
parent 1a2885fd74
commit e632438fba
6 changed files with 90 additions and 4 deletions

View File

@@ -154,4 +154,5 @@ public class LightlessConfig : ILightlessConfiguration
public bool SyncshellFinderEnabled { get; set; } = false;
public string? SelectedFinderSyncshell { get; set; } = null;
public string LastSeenVersion { get; set; } = string.Empty;
public HashSet<Guid> OrphanableTempCollections { get; set; } = [];
}