Files
Disco/Disco.Models/Services/Jobs/JobLists/JobLocationReference.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

15 lines
329 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.Services.Jobs.JobLists
{
public class JobLocationReference
{
public string Location { get; set; }
public List<JobTableItemModel> References { get; set; }
}
}