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; }
    }
}