mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 20:19:17 +08:00
19617e9dae
1. refactoriong start menu source 2. fix depth problems involved in last commit
13 lines
267 B
C#
13 lines
267 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
|
|
namespace Wox.Plugin.Program.ProgramSources
|
|
{
|
|
[Serializable]
|
|
public abstract class ProgramSource
|
|
{
|
|
public abstract List<Program> LoadPrograms();
|
|
}
|
|
} |