9 lines
193 B
C#
9 lines
193 B
C#
namespace Toolkit.Foundation
|
|
{
|
|
public interface IConfigurationWriter<TConfiguration> where TConfiguration : class
|
|
{
|
|
void Write(string section, TConfiguration args);
|
|
}
|
|
|
|
}
|