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

12 lines
245 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Wox.Infrastructure.Storage;
namespace Wox.Plugin.Program
{
[Serializable]
public class ProgramIndexCache
{
public List<Program> Programs = new List<Program>();
}
}