aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService.Gateway/DTO/EnvironmentConfiguration.cs
blob: 25ba9ba3d58ca702c29d01959b56498df2499b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Tango.MachineService.Gateway.DTO
{
    public class EnvironmentConfiguration
    {
        public String ID { get; set; }
        public String Name { get; set; }
        public String Description { get; set; }
        public String MachineServiceAddress { get; set; }
        public int DisplayIndex { get; set; }
    }
}
io technician module. /// </summary> /// <seealso cref="Tango.MachineStudio.Common.IStudioModule" /> [StudioModule(1)] public class TechnicianModule : StudioModuleBase { /// <summary> /// Gets the module name. /// </summary> public override string Name => "Tech Board"; /// <summary> /// Gets the module description. /// </summary> public override string Description => "Provides access to low level machine components by exposing diagnostics and profiling tools."; /// <summary> /// Gets the module cover image. /// </summary> public override BitmapSource Image => ResourceHelper.GetImageFromResources("Images/technician.jpg"); /// <summary> /// Gets the module entry point view type. /// </summary> public override Type MainViewType { get { return typeof(MachineTechView); } } /// <summary> /// Gets the permission required to see and load this module. /// </summary> public override Permissions Permission => Permissions.RunTechBoardModule; /// <summary> /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. /// </summary> public override void Dispose() { } } }