20 lines
312 B
C#
20 lines
312 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Thousandto.Code.Logic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 消息的优先级
|
|||
|
/// </summary>
|
|||
|
public enum MsgInfoPriority
|
|||
|
{
|
|||
|
Default = 0,
|
|||
|
Low = 1,
|
|||
|
Normal = 2,
|
|||
|
High = 3,
|
|||
|
Highest = 4
|
|||
|
}
|
|||
|
}
|