blob: 0f0df359162e38e8752c3f9a2e0340827a8d5bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Integration.Operation
{
public enum MachineStatuses
{
[Description("Disconnected")]
Disconnected = 0,
[Description("Getting Ready")]
PowerUp = 1,
[Description("Standby")]
Standby = 2,
[Description("Ready To Dye")]
ReadyToDye = 3,
[Description("Getting Ready")]
GettingReady = 4,
[Description("Dyeing")]
Printing = 5,
[Description("Service")]
Service = 6,
[Description("Upgrading")]
Upgrading = 7,
[Description("Shutting Down")]
ShuttingDown = 8,
[Description("Error")]
Error = 9,
[Description("Power Down")]
PowerDown = 10,
}
}
|