6 lines
177 B
C#
6 lines
177 B
C#
namespace Toolkit.Framework.Foundation;
|
|
|
|
public interface IWritableConfigurationProvider
|
|
{
|
|
void Write<TValue>(string section, TValue value) where TValue : class, new();
|
|
} |