| Mode | Name | Size | |
|---|---|---|---|
| -rw-r--r-- | IPPCUpdateService.cs | 1228 | logstatsplain |
| -rw-r--r-- | LatestVersionResponse.cs | 329 | logstatsplain |
-rw-r--r--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
};
}
}
}
|
