PowerToys/Wox.Infrastructure/Storage/UserSettings/WebSearch.cs

11 lines
311 B
C#
Raw Normal View History

2014-03-23 16:17:41 +08:00
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; }
}
}