Plane.Libraries/Plane/Logging/Priority.cs
2017-02-27 02:04:13 +08:00

10 lines
139 B
C#

namespace Plane.Logging
{
public enum Priority
{
None = 0,
High = 1,
Medium = 2,
Low = 3
}
}