PowerToys/Wox.Plugin/PluginMetadata.cs

40 lines
1.1 KiB
C#
Raw Normal View History

2013-12-20 12:38:10 +01:00
using System;
using System.Collections.Generic;
using System.IO;
2013-12-20 12:38:10 +01:00
using System.Linq;
using System.Text;
2014-01-29 11:33:24 +01:00
namespace Wox.Plugin
2013-12-20 12:38:10 +01: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 12:38:10 +01: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 ExecuteFilePath
{
get { return Path.Combine(PluginDirecotry, ExecuteFileName); }
}
2013-12-23 16:53:38 +01:00
public string ExecuteFileName { get; set; }
2013-12-22 12:35:21 +01:00
public string PluginDirecotry { get; set; }
public string ActionKeyword { get; set; }
2014-01-03 11:16:05 +01:00
public PluginType PluginType { get; set; }
2013-12-20 12:38:10 +01:00
}
}