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

11 lines
224 B
C#

using System;
using System.Collections.Generic;
namespace Wox.Plugin.Program.ProgramSources
{
[Serializable]
public abstract class ProgramSource
{
public abstract List<Program> LoadPrograms();
}
}