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