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

13 lines
267 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
{
2017-01-13 09:21:00 +08:00
public Win32[] Win32s = { };
public UWP.Application[] UWPs = { };
}
}