PowerToys/Wox.Infrastructure/Storage/UserSettings/WebSearch.cs
2014-03-23 16:17:41 +08:00

11 lines
311 B
C#

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