5 lines
159 B
C#
5 lines
159 B
C#
|
|
namespace Core.Configurations.SmartConfiguration;
|
||
|
|
public interface IConfigurationRepository
|
||
|
|
{
|
||
|
|
Task<IEnumerable<AppConfiguration>> GetActiveConfigurations();
|
||
|
|
}
|