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