summaryrefslogtreecommitdiff
path: root/product/Presentation/Views/IDialogLauncher.cs
blob: 70be13f692dd23a9480eb053813043edab949f24 (plain)
1
2
3
4
5
6
7
8
9
using Gorilla.Commons.Utility.Core;

namespace MoMoney.Presentation.Views
{
    public interface IDialogLauncher
    {
        void launch<Command>(Command command) where Command : ICommand;
    }
}