mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
39edf1a8ed
1. part of #389 2. file rename 3. fixup
12 lines
245 B
C#
12 lines
245 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
[Serializable]
|
|
public class ProgramIndexCache
|
|
{
|
|
public List<Program> Programs = new List<Program>();
|
|
}
|
|
} |