PowerToys/Plugins/Wox.Plugin.WebSearch/WebSearch.cs

14 lines
329 B
C#
Raw Normal View History

using System;
namespace Wox.Plugin.WebSearch
{
[Serializable]
public class WebSearch
{
public string Title { get; set; }
public string ActionKeyword { get; set; }
public string IconPath { get; set; }
public string Url { get; set; }
public bool Enabled { get; set; }
}
}