PowerToys/Wox.Core/UserSettings/WebSearch.cs

14 lines
327 B
C#

using System;
namespace Wox.Core.UserSettings
{
[Serializable]
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; }
}
}