aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobSummeryViewVM.cs
blob: d6eb3bc63e29a53ad15e9684c0f929a2f0a296a8 (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>();
        }
    }
}