mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 12:09:18 +08:00
34 lines
761 B
C#
34 lines
761 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Newtonsoft.Json;
|
|||
|
using Wox.Infrastructure.Storage;
|
|||
|
|
|||
|
namespace Wox.Plugin.System.CMD
|
|||
|
{
|
|||
|
public class CMDStorage : BaseStorage<CMDStorage>
|
|||
|
{
|
|||
|
[JsonProperty]
|
|||
|
public Dictionary<string, int> CMDHistory = new Dictionary<string, int>();
|
|||
|
|
|||
|
protected override string ConfigName
|
|||
|
{
|
|||
|
get { return "CMDHistory"; }
|
|||
|
}
|
|||
|
|
|||
|
public void AddCmdHistory(string cmdName)
|
|||
|
{
|
|||
|
if (CMDHistory.ContainsKey(cmdName))
|
|||
|
{
|
|||
|
CMDHistory[cmdName] += 1;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
CMDHistory.Add(cmdName, 1);
|
|||
|
}
|
|||
|
Save();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|