summaryrefslogtreecommitdiff
path: root/src/Notepad/Infrastructure/Core/ICommand.cs
blob: 1fadec346d7f18c28acc385df08a77e81c08f483 (plain)
1
2
3
4
5
namespace Notepad.Infrastructure.Core {
    public interface ICommand {
        void Execute();
    }
}