12 lines
193 B
C#
12 lines
193 B
C#
using System;
|
|
|
|
namespace Pilz.Configuration;
|
|
|
|
public interface ISettingsNode
|
|
{
|
|
void Reset();
|
|
}
|
|
|
|
[Obsolete("Use ISettingsNode instead!")]
|
|
public interface IChildSettings : ISettingsNode;
|