Files
Random-Project/TermEngine/Core/ICOmmand.cs

15 lines
197 B
C#
Raw Normal View History

2025-07-09 00:22:59 +03:00
namespace TermApp.Core
{
public interface ICommand
{
string Name { get; }
string Description { get; }
void Execute(string[] args, string input = null);
}
}