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

namespace Tango.PPC.Common
{
    public enum ApplicationStates
    {
        PreSetup = 0,
        SemiSetup = 1,
        Default = 2,
        Updating = 3,
    }
}