summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Core/IApplicationController.cs
blob: 735ef040dc24cc1d80e418455ea25a4bb3c84aa1 (plain)
1
2
3
4
5
namespace Notepad.Presentation.Core {
    public interface IApplicationController {
        void Run<Presenter>() where Presenter : IPresenter;
    }
}