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