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