PowerToys/Wox.Core/UserSettings/PluginSettings.cs
2016-04-21 22:40:03 +01:00

17 lines
302 B
C#

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