aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.Upgrade/Navigation/RemoteUpgradeNavigationManager.cs
blob: 7fccff816c04b087ff4396891fea241be416a7ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Tango.FSE.Common.Navigation;
using Tango.FSE.Upgrade.Views;
using Tango.SharedUI.Controls;

namespace Tango.FSE.Upgrade.Navigation
{
    public class RemoteUpgradeNavigationManager : ModularNavigationManager<RemoteUpgradeView>
    {
        public RemoteUpgradeNavigationManager(FrameworkElement navigationControlParent) : base(navigationControlParent)
        {
        }
    }
}