PowerToys/Wox.Plugin.SystemPlugins/Program/ProgramCacheStorage.cs
2014-12-15 22:58:49 +08:00

18 lines
435 B
C#

using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Wox.Infrastructure.Storage;
namespace Wox.Plugin.SystemPlugins.Program
{
[Serializable]
public class ProgramCacheStorage : BinaryStorage<ProgramCacheStorage>
{
public List<Program> Programs = new List<Program>();
protected override string ConfigName
{
get { return "ProgramIndexCache"; }
}
}
}