using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_Common.StackerCraneEnum { /// /// 在线状态 /// public enum Onlinestate { /// /// 离线 /// [Description("离线")] offline = 0, /// /// 在线 /// [Description("在线")] online = 1, } }