Files
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 01:17:28 +01:00
using Wox.Plugin.Program.Programs;
namespace Wox.Plugin.Program
{
[Serializable]
public class ProgramIndexCache
{
2017-01-13 01:21:00 +00:00
public Win32[] Win32s = { };
public UWP.Application[] UWPs = { };
}
}