mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +08:00
11 lines
311 B
C#
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; }
|
|
}
|
|
} |