PowerToys/Plugins/Wox.Plugin.Program/ProgramCacheStorage.cs

14 lines
360 B
C#
Raw Normal View History

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>();
2016-01-07 10:31:17 +08:00
protected override string FileName { get; } = "ProgramIndexCache";
}
}