5be747afbc
Configurable list and location suggestions. Ability to restrict locations. Shows 'occupied' locations.
20 lines
435 B
C#
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
|
|
}
|
|
}
|