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

12 lines
224 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
{
public Win32[] Programs = { };
}
}