Add foundation
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public interface IConfigurationWriter<TConfiguration>
|
||||
where TConfiguration :
|
||||
class
|
||||
{
|
||||
void Write(Action<TConfiguration> updateDelegate);
|
||||
|
||||
void Write(object value);
|
||||
|
||||
void Write(TConfiguration value);
|
||||
}
|
||||
Reference in New Issue
Block a user