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

12 lines
242 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2016-08-20 08:17:28 +08:00
using Wox.Plugin.Program.Programs;
namespace Wox.Plugin.Program
{
[Serializable]
public class ProgramIndexCache
{
2016-08-20 08:17:28 +08:00
public List<Win32> Programs = new List<Win32>();
}
}