Add init time and query time to setting view

This commit is contained in:
qianlifeng
2015-02-05 00:03:35 +08:00
parent 1d3f1fd7d0
commit fa53bce27a
8 changed files with 49 additions and 20 deletions

View File

@@ -10,6 +10,12 @@ namespace Wox.Plugin
public IPlugin Plugin { get; set; }
public PluginMetadata Metadata { get; set; }
internal long InitTime { get; set; }
internal long AvgQueryTime { get; set; }
internal int QueryCount { get; set; }
public override string ToString()
{
return Metadata.Name;