Added ConfigurationBuilder
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public class ConfigurationBuilder<TConfiguration> :
|
||||
IConfigurationBuilder<TConfiguration>
|
||||
where TConfiguration : class
|
||||
{
|
||||
public string? Section { get; set; }
|
||||
|
||||
public TConfiguration? Configuration { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user