blob: 0da9de5e59753501e18aca9f2bf693c450385516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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; }
}
}
|