aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineUpdate/MachineUpdateProgress.cs
blob: 7cb53b83ecd9d83f6d73b8cb9e39ec9f0193cf66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Common.MachineUpdate
{
    public class MachineUpdateProgress : EventArgs
    {
        public double Progress { get; set; }
        public double Total { get; set; }
        public bool IsIntermediate { get; set; }
        public String Name { get; set; }
        public String Message { get; set; }
    }
}