2025-02-02 23:13:17 +01:00
|
|
|
using Core.Configurations.SmartConfigProvider;
|
|
|
|
|
|
|
|
|
|
namespace Core.Configurations.SmartConfiguration;
|
|
|
|
|
public interface IConfigurationRepository
|
|
|
|
|
{
|
|
|
|
|
IEnumerable<AppConfiguration> GetActiveConfigurations();
|
2025-02-11 18:46:51 +01:00
|
|
|
}
|
|
|
|
|
|