1
0
mirror of https://github.com/chylex/Backup-Essentials.git synced 2025-07-31 03:59:07 +02:00

Changed data storage change tracker to be a structure

This commit is contained in:
chylex 2015-04-15 20:53:10 +02:00
parent 38f2fd7401
commit 57eefcb2f1

View File

@ -22,7 +22,7 @@ namespace BackupEssentials.Backup.Data{
public static readonly ObservableCollection<HistoryEntry> HistoryEntryList = new ObservableCollection<HistoryEntry>(new List<HistoryEntry>(32));
public static readonly ChangeTracker HistoryEntryListTracker = new ChangeTracker();
public class ChangeTracker{
public struct ChangeTracker{
public bool Changed;
}