[O] enforce type for SetEntryValue and some comment and type chore

This commit is contained in:
Clansty
2024-11-26 05:14:58 +08:00
parent e3b06b110f
commit da36ef4002
4 changed files with 12 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ public interface IConfig
{
public interface IEntryState
{
public bool IsDefault { get; set; }
public bool IsDefault { get; }
public object DefaultValue { get; }
public object Value { get; set; }
}