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