PowerToys/Wox.Plugin/PluginMetadata.cs

58 lines
1.5 KiB
C#
Raw Normal View History

2013-12-20 19:38:10 +08:00
using System;
using System.Collections.Generic;
using System.IO;
2013-12-20 19:38:10 +08:00
using System.Linq;
using System.Security.RightsManagement;
2013-12-20 19:38:10 +08:00
using System.Text;
2014-01-29 18:33:24 +08:00
namespace Wox.Plugin
2013-12-20 19:38:10 +08:00
{
public class PluginMetadata
{
private int configVersion = 1;
/// <summary>
/// if we need to change the plugin config in the futher, use this to
/// indicate config version
/// </summary>
public int ConfigVersion
{
get { return configVersion; }
set { configVersion = value; }
}
public string ID { get; set; }
2013-12-20 19:38:10 +08:00
public string Name { get; set; }
public string Author { get; set; }
public string Version { get; set; }
public string Language { get; set; }
public string Description { get; set; }
public string Website { get; set; }
public string ExecuteFilePath
{
get { return Path.Combine(PluginDirectory, ExecuteFileName); }
}
2013-12-23 23:53:38 +08:00
public string ExecuteFileName { get; set; }
public string PluginDirectory { get; set; }
public string ActionKeyword { get; set; }
2014-01-03 18:16:05 +08:00
public PluginType PluginType { get; set; }
public string IcoPath { get; set; }
public string FullIcoPath
{
get
{
if (IcoPath.StartsWith("data:"))
{
return IcoPath;
}
return Path.Combine(PluginDirectory, IcoPath);
}
}
2013-12-20 19:38:10 +08:00
}
}