mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
23 lines
585 B
C#
23 lines
585 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 FileName { get; } = "settings_plugin_websearch";
|
|
}
|
|
}
|