Files
Disco/Disco.Models/Repository/Job/Queue/JobQueuePriority.cs
T
Gary Sharp 3f63281dc4 Feature: Job Queues
Also UI style, theme and element changes
2014-02-03 14:50:08 +11:00

16 lines
264 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.Repository
{
public enum JobQueuePriority : byte
{
High = 2,
Normal = 1,
Low = 0
}
}