using System.Collections.Generic;
namespace Abp.Configuration
{
///
/// Defines setting definition manager.
///
public interface ISettingDefinitionManager
{
///
/// Gets the object with given unique name.
/// Throws exception if can not find the setting.
///
/// Unique name of the setting
/// The object.
SettingDefinition GetSettingDefinition(string name);
///
/// Gets a list of all setting definitions.
///
/// All settings.
IReadOnlyList GetAllSettingDefinitions();
}
}