Files
PowerToys/Plugins/Wox.Plugin.Program/ProgramIndexCache.cs
bao-qian 9e033d1673 rename
2016-08-19 23:24:21 +01:00

11 lines
211 B
C#

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