5be747afbc
Configurable list and location suggestions. Ability to restrict locations. Shows 'occupied' locations.
13 lines
278 B
C#
13 lines
278 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Disco.Web.Areas.API.Models.Job
|
|
{
|
|
public class DeviceHeldLocationModel
|
|
{
|
|
public string Location { get; set; }
|
|
public string References { get; set; }
|
|
}
|
|
} |