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