aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Web/MachineSetupResponse.cs
blob: f5d03c6ce349b9a20e9ed6d5f2e25200f721771d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #88888
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Transport.Web;

namespace Tango.PPC.Common.Web
{
    public class MachineSetupResponse : WebResponseMessage
    {
        public String NotifyCompletedToken { get; set; }

        public String Version { get; set; }

        public String FirmwareVersion { get; set; }

        public String BlobAddress { get; set; }

        public String CdnAddress { get; set; }

        public DataSource DataSource { get; set; }

        public String OSKey { get; set; }

        public bool SetupActivation { get; set; }
        public bool SetupRemoteAssistance { get; set; }
        public bool SetupUWF { get; set; }
        public bool SetupFirmware { get; set; }
        public bool SetupFPGA { get; set; }
        public bool IsDemo { get; set; }
        public String DeviceComPort { get; set; }
        public String Organization { get; set; }
    }
}