blob: f4dc2d2a07859ddfca5c44630d693e1fdffab61d (
plain)
1
2
3
4
5
6
7
8
9
|
using MoMoney.Presentation.Model.Navigation;
namespace MoMoney.Presentation.Views
{
public interface INavigationView : IDockedContentView
{
void accept(INavigationTreeVisitor tree_view_visitor);
}
}
|