using System; using System.Collections.Generic; using System.IO; using System.Reflection; using Wox.Infrastructure.Storage; namespace Wox.Plugin.Program { [Serializable] public class ProgramCacheStorage : BinaryStorage { public List Programs = new List(); protected override string ConfigFolder { get { return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); } } protected override string ConfigName { get { return "ProgramIndexCache"; } } } }