7 lines
204 B
C#
7 lines
204 B
C#
|
|
using Core.Configurations.SmartConfigProvider;
|
||
|
|
|
||
|
|
namespace Core.Configurations.SmartConfiguration;
|
||
|
|
public interface IConfigurationRepository
|
||
|
|
{
|
||
|
|
IEnumerable<AppConfiguration> GetActiveConfigurations();
|
||
|
|
}
|