Files
2017-02-01 09:41:08 -05:00

9 lines
100 B
C#

namespace LeafWeb.Core.Entities
{
public enum Priority
{
Normal = 0,
Low = -1,
High = 1
}
}