10 lines
139 B
C#
10 lines
139 B
C#
|
namespace Plane.Logging
|
|||
|
{
|
|||
|
public enum Priority
|
|||
|
{
|
|||
|
None = 0,
|
|||
|
High = 1,
|
|||
|
Medium = 2,
|
|||
|
Low = 3
|
|||
|
}
|
|||
|
}
|