10 lines
219 B
C#
10 lines
219 B
C#
namespace Hyperbar;
|
|
|
|
public interface IConfigurationWriter<TConfiguration>
|
|
where TConfiguration :
|
|
class, new()
|
|
{
|
|
void Write(Action<TConfiguration> updateDelegate);
|
|
|
|
void Write(TConfiguration value);
|
|
} |