using System; using System.Collections.Generic; using System.Text; namespace Thousandto.Code.Logic { /// /// 消息的优先级 /// public enum MsgInfoPriority { Default = 0, Low = 1, Normal = 2, High = 3, Highest = 4 } }