2025-02-20 00:23:13 +01:00
|
|
|
namespace PlanTempus.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
|
|
|
}
|
|
|
|
|
|