Files
Disco/Disco.Web/Areas/API/Models/Job/DeviceHeldLocationModel.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

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; }
}
}