PowerToys/Plugins/Wox.Plugin.Program/ProgramCacheStorage.cs
2016-01-08 02:18:19 +00:00

14 lines
360 B
C#

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