rename IChildSettings to ISettingsNode & update Settings.Get<T>()
This commit is contained in:
11
Pilz.Configuration/ISettingsNode.cs
Normal file
11
Pilz.Configuration/ISettingsNode.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace Pilz.Configuration;
|
||||
|
||||
public interface ISettingsNode
|
||||
{
|
||||
void Reset();
|
||||
}
|
||||
|
||||
[Obsolete("Use ISettingsNode instead!")]
|
||||
public interface IChildSettings : ISettingsNode;
|
||||
Reference in New Issue
Block a user