aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/MaintenanceModule.cs
blob: 18871ac7823973024452b169607be7a811d30cb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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; }
    }
}