10 lines
287 B
C#
10 lines
287 B
C#
namespace PlanTempus.Core.Configurations
|
|
{
|
|
public interface IConfigurationRoot : IConfiguration { }
|
|
|
|
public interface IConfiguration
|
|
{
|
|
internal List<IConfigurationProvider> ConfigurationProviders { get; set; }
|
|
string this[string key] { get; set; }
|
|
}
|
|
}
|