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