Files
Toolkit2/Toolkit.Foundation/IConfigurationDescriptor.cs
T
TheXamlGuy bc55c4649b tidy
2024-04-26 23:05:36 +01:00

10 lines
199 B
C#

namespace Toolkit.Foundation;
public interface IConfigurationDescriptor<out TConfiguration>
where TConfiguration :
class
{
TConfiguration Value { get; }
string Section { get; }
}