mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
14 lines
360 B
C#
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";
|
|
}
|
|
} |