blob: 3a09962f5912cba093452663e18a2be4728b47b6 (
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
27
|
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.Diagnostics.Views;
namespace Tango.FSE.Diagnostics
{
[FSEModule(index: 1)]
public class DiagnosticsModule : FSEModuleBase
{
public override string Name { get; } = "Diagnostics";
public override string Description { get; } = "Diagnostics module";
public override BitmapSource Image { get; }
public override Type MainViewType { get; } = typeof(MainView);
public override Tango.BL.Enumerations.Permissions Permission { get; } = Permissions.RunPPC;
public override void Dispose()
{
}
}
}
|