Added ConfigurationBuilder

This commit is contained in:
TheXamlGuy
2024-10-08 09:43:09 +01:00
parent f47e3deee9
commit 55756b7093
6 changed files with 55 additions and 36 deletions
@@ -0,0 +1,8 @@
namespace Toolkit.Foundation;
public interface IConfigurationBuilder<TConfiguration>
{
string? Section { get; set; }
TConfiguration? Configuration { get; set; }
}