convert to C# & update config system
This commit is contained in:
11
Pilz.Configuration/ISettings.cs
Normal file
11
Pilz.Configuration/ISettings.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Pilz.Configuration
|
||||
{
|
||||
public interface ISettings
|
||||
{
|
||||
IReadOnlyCollection<IChildSettings> Childs { get; }
|
||||
T Get<T>() where T : IChildSettings, ISettingsIdentifier;
|
||||
void Reset();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user