mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
a07d6aa1e7
See issue #352
14 lines
329 B
C#
14 lines
329 B
C#
using System;
|
|
|
|
namespace Wox.Plugin.WebSearch
|
|
{
|
|
[Serializable]
|
|
public class WebSearch
|
|
{
|
|
public string Title { get; set; }
|
|
public string ActionKeyword { get; set; }
|
|
public string IconPath { get; set; }
|
|
public string Url { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
} |