using System.Collections.Generic; using NBF.Setting; namespace NBF { public interface ISettings { List GetOptionsByTab(string group); IEnumerable GetAllTabs(); T GetSettingOption() where T : OptionBase; } }