2025-02-20 00:23:13 +01:00
|
|
|
|
namespace PlanTempus.Core.Configurations
|
2025-01-31 22:08:54 +01:00
|
|
|
|
{
|
2025-02-11 18:46:51 +01:00
|
|
|
|
public interface IConfigurationRoot : IConfiguration { }
|
|
|
|
|
|
|
|
|
|
|
|
public interface IConfiguration
|
|
|
|
|
|
{
|
2025-02-02 23:13:17 +01:00
|
|
|
|
internal List<IConfigurationProvider> ConfigurationProviders { get; set; }
|
2025-02-11 18:46:51 +01:00
|
|
|
|
string this[string key] { get; set; }
|
2025-02-02 23:13:17 +01:00
|
|
|
|
}
|
2025-01-31 22:08:54 +01:00
|
|
|
|
}
|