PowerToys/Plugins/Wox.Plugin.WebSearch/WebSearch.cs
2016-04-21 20:42:07 +01:00

13 lines
310 B
C#

using System;
namespace Wox.Plugin.WebSearch
{
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; }
}
}