PowerToys/Wox.Core/UserSettings/PluginConfig.cs
2016-04-21 20:56:53 +01:00

17 lines
301 B
C#

using System.Collections.Generic;
namespace Wox.Core.UserSettings
{
public class PluginSetting
{
public string ID { get; set; }
public string Name { get; set; }
public List<string> ActionKeywords { get; set; }
public bool Disabled { get; set; }
}
}