20 lines
338 B
C#
20 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MIT_Packets.Enums
|
|
{
|
|
public enum ClientStatus
|
|
{
|
|
Waiting,
|
|
Downloading_Image,
|
|
Applying_Image,
|
|
Installing_Drivers,
|
|
Joining,
|
|
Completed,
|
|
Idle
|
|
}
|
|
}
|