8 lines
205 B
C#
8 lines
205 B
C#
|
|
namespace SWP.Core.Configurations.SmartConfigProvider;
|
||
|
|
public interface IConfigurationRepository
|
||
|
|
{
|
||
|
|
string ConnectionString { get; set; }
|
||
|
|
IEnumerable<AppConfiguration> GetActiveConfigurations();
|
||
|
|
}
|
||
|
|
|