Files
Toolkit2/Toolkit.Foundation/IConfiguration.cs
T
TheXamlGuy 969c740f2d WIP
2024-04-21 21:10:26 +01:00

11 lines
190 B
C#

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