12 lines
273 B
C#
12 lines
273 B
C#
using System.Collections.Generic;
|
|
using NBF.Setting;
|
|
|
|
namespace NBF
|
|
{
|
|
public interface ISettings
|
|
{
|
|
List<OptionBase> GetOptionsByGroup(string group);
|
|
IEnumerable<string> GetAllGroups();
|
|
T GetSettingOption<T>() where T : OptionBase;
|
|
}
|
|
} |