aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Basic/Properties/AssemblyInfo.cs
diff options
context:
space:
mode:
authorAvi Levkovich <avi@twine-s.com>2020-10-22 10:59:18 +0300
committerAvi Levkovich <avi@twine-s.com>2020-10-22 10:59:18 +0300
commit7b079047f51c9eac5e8c59afb303bc0043a7c400 (patch)
treece56723563190163ce1e5e492ce4edc85f56164e /Software/V
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;
using Tango.BL.Enumerations;
using Tango.MachineStudio.Common;
using Tango.MachineStudio.Logging.Views;
using Tango.SharedUI.Helpers;

namespace Tango.MachineStudio.Logging
{
    [StudioModule(5)]
    public class LoggingModule : StudioModuleBase
    {
        public override string Name
        {
            get
            {
                return "Logging";
            }
        }

        public override string Description
        {
            get
            {
                return "Monitor real-time machine hardware/software events and logs.";
            }
        }

        public override BitmapSource Image
        {
            get
            {
                return ResourceHelper.GetImageFromResources("Images/logging-module.png");
            }
        }

        /// <summary>
        /// Gets the module entry point view type.
        /// </summary>
        public override Type MainViewType
        {
            get
            {
                return typeof(MainView);
            }
        }

        public override Permissions Permission
        {
            get
            {
                return Permissions.RunLoggingModule;
            }
        }

        public override void Dispose()
        {
            
        }
    }
}