mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
12 lines
242 B
C#
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>();
|
|
}
|
|
} |