aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Scripting/Properties
ModeNameSize
-rw-r--r--AssemblyInfo.cs243logstatsplain
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;

namespace Tango.PPC.Shared.RemoteUpgrade
{
    public class StartRemoteApplicationUpgradeResponse
    {
        public TangoProgress<double> Progress { get; set; }

        public StartRemoteApplicationUpgradeResponse()
        {
            Progress = new TangoProgress<double>()
            {
                Message = "Initializing...",
                IsIndeterminate = true,
                Maximum = 100
            };
        }
    }
}