9 lines
100 B
C#
9 lines
100 B
C#
namespace LeafWeb.Core.Entities
|
|
{
|
|
public enum Priority
|
|
{
|
|
Normal = 0,
|
|
Low = -1,
|
|
High = 1
|
|
}
|
|
} |