mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
12 lines
224 B
C#
12 lines
224 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Wox.Plugin.Program.Programs;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
[Serializable]
|
|
public class ProgramIndexCache
|
|
{
|
|
public Win32[] Programs = { };
|
|
}
|
|
} |