Files
Random-Project/TermEngine/ICOmmand.cs

8 lines
121 B
C#
Raw Normal View History

2025-07-08 04:29:21 +03:00
public interface ICommand
{
string Name { get; }
string Description { get; }
void Execute(string[] args);
}