12 lines
225 B
C#
12 lines
225 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IConfigurationDescriptor<out TConfiguration>
|
|
where TConfiguration :
|
|
class
|
|
{
|
|
string Name { get; }
|
|
|
|
string Section { get; }
|
|
|
|
TConfiguration Value { get; }
|
|
} |