PowerToys/Plugins/Wox.Plugin.WebSearch/WebSearch.cs
2015-01-26 22:50:38 +08:00

14 lines
326 B
C#

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