PowerToys/Plugins/Wox.Plugin.Program/ProgramIndexCache.cs
2016-08-20 01:17:28 +01:00

12 lines
242 B
C#

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