blob: 960d463b0c3be6b5b699035e643b1724f923ef40 (
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
28
29
30
31
32
|
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.UI.Views;
namespace Tango.FSE.UI
{
[FSEModule(0, "DashboardView")]
public class InternalModule : FSEModuleBase
{
public InternalModule()
{
IsVisibleInMenu = false;
}
public override string Name { get; } = "Internal Module";
public override string Description { get; } = "Internal Module";
public override BitmapSource Image { get; }
public override Type MainViewType { get; } = typeof(InternalModuleView);
public override Permissions Permission { get; } = Permissions.RunPPC;
public override void Dispose()
{
}
}
}
|