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