summaryrefslogtreecommitdiff
path: root/product/Presentation/Views/INavigationView.cs
blob: 9f3c2f09fe089fa45f1624e83a52830f2607640a (plain)
1
2
3
4
5
6
7
8
9
10
using MoMoney.Presentation.Model.Navigation;
using MoMoney.Presentation.Views.Core;

namespace MoMoney.Presentation.Views.Navigation
{
    public interface INavigationView : IDockedContentView
    {
        void accept(INavigationTreeVisitor tree_view_visitor);
    }
}