aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/MachineManagerModule.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2021-05-04 05:54:03 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2021-05-04 05:54:03 +0300
commitbfcc978160dfdc00256cbbe11551cd32be459dda (patch)
treef618b1db2100d834c85f5efd59f17fcdf187fce0 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/MachineManagerModule.cs
parentba6f699293846839af4504dbfb600bf4d9e51606 (diff)
downloadTango-bfcc978160dfdc00256cbbe11551cd32be459dda.tar.gz
Tango-bfcc978160dfdc00256cbbe11551cd32be459dda.zip
Machine Manager Module !!
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/MachineManagerModule.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/MachineManagerModule.cs62
1 files changed, 62 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/MachineManagerModule.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/MachineManagerModule.cs
new file mode 100644
index 000000000..a55e332cf
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.MachineManager/MachineManagerModule.cs
@@ -0,0 +1,62 @@
+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.MachineStudio.Common;
+using Tango.MachineStudio.MachineManager.Views;
+using Tango.SharedUI.Helpers;
+
+namespace Tango.MachineStudio.MachineManager
+{
+ [StudioModule(3)]
+ public class MachineManagerModule : StudioModuleBase
+ {
+ public override string Name
+ {
+ get
+ {
+ return "Machine Manager";
+ }
+ }
+
+ public override string Description
+ {
+ get
+ {
+ return "Apply machine configuration to a set of machine on the current environment.";
+ }
+ }
+
+ public override BitmapSource Image
+ {
+ get
+ {
+ return ResourceHelper.GetImageFromResources("Images/module.png");
+ }
+ }
+
+ public override Type MainViewType
+ {
+ get
+ {
+ return typeof(MainView);
+ }
+ }
+
+ public override Permissions Permission
+ {
+ get
+ {
+ return Permissions.RunMachineStudio;
+ }
+ }
+
+ public override void Dispose()
+ {
+
+ }
+ }
+}