master
1namespace Notepad.Infrastructure.Core {
2    public interface ICommand {
3        void Execute();
4    }
5}