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