Rename, part 1

This commit is contained in:
bao-qian
2016-04-21 22:39:47 +01:00
parent 98928dba9d
commit 57a5b90be7

View File

@@ -0,0 +1,16 @@
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; }
}
}