using System.Text.Json;
namespace BotSharp.Abstraction.Settings;
///
/// This settings service is used to cache, monitor changes and encrypt settings in the system and user level
///
public interface ISettingService
{
T Bind(string path) where T : new();
object GetDetail(string settingName, bool mask = false);
}