8 lines
189 B
C#
8 lines
189 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IWritableConfiguration<out TConfiguration>
|
|
where TConfiguration :
|
|
class
|
|
{
|
|
void Write(Action<TConfiguration> updateDelegate);
|
|
} |