aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.Upgrade/UpgradeModule.cs
blob: d8e8e7aed9306376342ccbf8b8186d65ddc92e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media.Imaging;
using Tango.BL.Enumerations;
using Tango.FSE.Common;
using Tango.FSE.Upgrade.Views;

namespace Tango.FSE.Upgrade
{
    [FSEModule(index: 4)]
    public class UpgradeModule : FSEModuleBase
    {
        public override string Name { get; } = "Remote Upgrade";
        public override string Description { get; } = "Remote upgrade module";
        public override Type MainViewType { get; } = typeof(MainView);
        public override Permissions Permission { get; } = Permissions.FSE_RunFSE;

        public override void Dispose()
        {

        }
    }
}