7 lines
201 B
C#
7 lines
201 B
C#
namespace Core.Configurations.SmartConfigProvider;
|
|
public interface IConfigurationRepository
|
|
{
|
|
string ConnectionString { get; set; }
|
|
IEnumerable<AppConfiguration> GetActiveConfigurations();
|
|
}
|
|
|