File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ public abstract class SyncedEntryBase
99 public abstract ConfigEntryBase BoxedEntry { get ; protected init ; }
1010
1111 public abstract object ? BoxedValueOverride { get ; set ; }
12+ public virtual bool SyncEnabled { get ; set ; }
1213 public virtual bool ValueOverridden { get ; internal set ; } = false ;
1314
1415 internal SyncedEntryBase ( ConfigEntryBase configEntry )
@@ -25,6 +26,7 @@ public void SetSerializedValueOverride(string value)
2526 internal SyncedEntryDelta ToDelta ( ) => new SyncedEntryDelta (
2627 configFileRelativePath : BoxedEntry . ConfigFile . GetConfigFileRelativePath ( ) ,
2728 definition : BoxedEntry . Definition . ToSynced ( ) ,
28- serializedValue : BoxedEntry . GetSerializedValue ( )
29+ serializedValue : BoxedEntry . GetSerializedValue ( ) ,
30+ syncEnabled : SyncEnabled
2931 ) ;
3032}
You can’t perform that action at this time.
0 commit comments