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