PowerToys/Wox.Infrastructure/UserSettings/WebSearch.cs
2014-01-29 22:44:57 +08:00

11 lines
303 B
C#

namespace Wox.Infrastructure.UserSettings
{
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; }
}
}