2025-02-18 16:23:08 +01:00
|
|
|
namespace Core.Configurations.SmartConfigProvider;
|
2025-02-02 23:13:17 +01:00
|
|
|
public interface IConfigurationRepository
|
|
|
|
|
{
|
2025-02-11 23:10:43 +01:00
|
|
|
string ConnectionString { get; set; }
|
2025-02-02 23:13:17 +01:00
|
|
|
IEnumerable<AppConfiguration> GetActiveConfigurations();
|
2025-02-11 18:46:51 +01:00
|
|
|
}
|
|
|
|
|
|