blob: 2fab26d099b393e380b99af05fd30de705ad73d2 (
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.PPCConsole.Views;
namespace Tango.FSE.PPCConsole
{
[FSEModule(index: 1)]
public class PPCConsoleModule : FSEModuleBase
{
public override string Name { get; } = "PPC Console";
public override string Description { get; } = "PPC Console module";
public override Type MainViewType { get; } = typeof(MainView);
public override Permissions[] Permission { get; } = new Permissions[] { Permissions.FSE_RunFSE, Permissions.TwineRSMAccess };
public override void Dispose()
{
}
}
}
|