blob: 18317946db520d23e81f846818e02274256ba847 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 21 3c 61 72 63 68 3e 0a 2f 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 31 34 38 35 32 37 33 36 | !<arch>./...............14852736 |
| 0020 | 31 38 20 20 20 20 20 20 20 20 20 20 20 20 20 20 30 20 20 20 20 20 20 20 31 32 39 33 35 32 20 20 | 18..............0.......129352.. |
| 0040 | 20 20 60 0a 00 00 03 f7 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 | ..`............................. |
| 0060 | 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 00 03 eb f0 | ......using System.Collections.Generic;
using System.Linq;
using System.Web;
using Tango.MachineService.Gateway.DTO;
namespace Tango.MachineService.Gateway.Messages
{
public class EnvironmentsResponse
{
public List<EnvironmentConfiguration> Environments { get; set; }
public EnvironmentsResponse()
{
Environments = new List<EnvironmentConfiguration>();
}
}
}
|