Files
Toolkit2/Toolkit.Foundation/IConfigurationDescriptor.cs
T
TheXamlGuy 338be9b328 wip
2024-05-28 17:30:40 +01:00

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; }
}