tomas/src/Tomas.Interface/Shell/IProgram.cs
2021-03-30 08:55:46 -04:00

9 lines
No EOL
218 B
C#

// I license this project under the GPL 3.0 license.
// See the LICENSE file in the project root for more information.
namespace Tomas.Interface.Shell
{
public interface IProgram
{
bool Start();
}
}