aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService.Gateway/Messages/EnvironmentsResponse.cs
blob: 2063d5e5917875025b8e67dc480953d2b490dfcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>();
        }
    }
}