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