aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs
blob: 1262eb248fc59ff5bbd7c4bc977a386ee2555ae6 (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.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Common.MachineSetup
{
    public enum MachineSetupSteps
    {
        [Description("Downloading Package")]
        UpdatingPackages,
        [Description("Synchronizing Schema")]
        SynchronizingSchema,
        [Description("Synchronizing Data")]
        SynchronizingData,
        [Description("Configuring Machine")]
        SynchronizingMachineConfiguration
    }
}