mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
18 lines
435 B
C#
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"; }
|
|
}
|
|
}
|
|
} |