aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/ExternalBridge/Web/MachineInfo.cs
blob: 578dd964029b3cf1cf2477ee3b67092f72ab53d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.Integration.ExternalBridge.Web
{
    public class MachineInfo
    {
        public String SerialNumber { get; set; }
        public String Organization { get; set; }
        public String IPAddress { get; set; }
        public bool CompressionEnabled { get; set; }

        public MachineInfo()
        {
            IPAddress = "Unknown";
        }
    }
}