2013-12-21 01:20:17 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2014-01-29 18:33:24 +08:00
|
|
|
|
namespace Wox.Plugin
|
2013-12-21 01:20:17 +08:00
|
|
|
|
{
|
|
|
|
|
public class PluginPair
|
|
|
|
|
{
|
|
|
|
|
public IPlugin Plugin { get; set; }
|
|
|
|
|
public PluginMetadata Metadata { get; set; }
|
2015-01-26 17:46:55 +08:00
|
|
|
|
|
2015-02-05 00:03:35 +08:00
|
|
|
|
internal long InitTime { get; set; }
|
|
|
|
|
|
|
|
|
|
internal long AvgQueryTime { get; set; }
|
|
|
|
|
|
|
|
|
|
internal int QueryCount { get; set; }
|
|
|
|
|
|
2015-01-26 17:46:55 +08:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Metadata.Name;
|
|
|
|
|
}
|
2013-12-21 01:20:17 +08:00
|
|
|
|
}
|
|
|
|
|
}
|