Feature #4: Pre-defined/Restricted Locations
Configurable list and location suggestions. Ability to restrict locations. Shows 'occupied' locations.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user