aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/SystemInformationModel.cs
blob: eb9ef801279510b070b85481f2e0f0d6ed0a04dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;

namespace Tango.MachineStudio.UI.TFS
{
    public class SystemInformationModel
    {
        public String ApplicationVersion { get; set; }
        public String EmbeddedVersion { get; set; }
        public String UserName { get; set; }
        public String HostName { get; set; }
        public Machine Machine { get; set; }
        public String ConfigurationString { get; set; }
    }
}