mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-06 03:07:54 +08:00
ebe4804b00
1. Fix #376 2. Thanks @ishu3101
31 lines
765 B
C#
31 lines
765 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.WebSearch
|
|
{
|
|
public class WebSearchStorage : JsonStrorage<WebSearchStorage>
|
|
{
|
|
[JsonProperty]
|
|
public List<WebSearch> WebSearches { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool EnableWebSearchSuggestion { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string WebSearchSuggestionSource { get; set; }
|
|
|
|
protected override string ConfigFolder
|
|
{
|
|
get { return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); }
|
|
}
|
|
|
|
protected override string ConfigName
|
|
{
|
|
get { return "setting"; }
|
|
}
|
|
}
|
|
}
|