aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/Navigation/ModularNavigationFSEViewModel.cs
blob: 3bef447f10027427f6c67985fe35cc8d70f10a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.DI;

namespace Tango.FSE.Common.Navigation
{
    public abstract class ModularNavigationFSEViewModel<T> : FSEViewModel
    {
        [TangoInject(TangoInjectMode.WhenAvailable)]
        protected IModularNavigationNavigationManager<T> ModularNavigationManager { get; set; }
    }
}