mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
8d10c9aa41
1. part of #389 2. huge refactoring
13 lines
310 B
C#
13 lines
310 B
C#
using System;
|
|
|
|
namespace Wox.Plugin.WebSearch
|
|
{
|
|
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; }
|
|
}
|
|
} |