Files
Disco/Disco.Models/BI/Job/LocationModes.cs
T
Gary Sharp 5be747afbc Feature #4: Pre-defined/Restricted Locations
Configurable list and location suggestions. Ability to restrict
locations. Shows 'occupied' locations.
2014-02-17 21:44:34 +11:00

20 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.BI.Job
{
public enum LocationModes
{
[Display(Name = "Unrestricted")]
Unrestricted,
[Display(Name = "Optional List")]
OptionalList,
[Display(Name = "Restricted List")]
RestrictedList
}
}