mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 12:11:09 +01:00
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();
|
|
}
|
|
} |