Files
FileTime/src/FileTime.Core/Command/IExecutableCommand.cs
2022-01-06 18:36:25 +01:00

7 lines
122 B
C#

namespace FileTime.Core.Command
{
public interface IExecutableCommand : ICommand
{
void Execute();
}
}