PowerToys/Wox/Models/WebSearch.cs

10 lines
243 B
C#
Raw Normal View History

2014-01-29 11:33:24 +01:00
namespace Wox.Models
{
public class WebSearch
{
public string Keyword { get; set; }
public string IconPath { get; set; }
public string Website { get; set; }
public string Enabled { get; set; }
}
}