9 lines
213 B
C#
9 lines
213 B
C#
using System;
|
|
|
|
namespace TheXamlGuy.Framework.Core
|
|
{
|
|
public interface IConfigurationWriter<TConfiguration> where TConfiguration : class
|
|
{
|
|
void Write(string section, TConfiguration args);
|
|
}
|
|
} |