Files
Disco/Disco.Web/Areas/Public/Models/UserHeldDevices/UserHeldDeviceModel.cs
T
Gary Sharp aa54d93e8e Feature: Held Devices Noticeboard
Provides a noticeboard for all devices, not just those assigned to
users.
2013-07-04 15:29:46 +10:00

21 lines
711 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Disco.Web.Areas.Public.Models.UserHeldDevices
{
public class UserHeldDeviceModel
{
public string UserId { get; set; }
public string UserDisplayName { get; set; }
public bool ReadyForReturn { get; set; }
public string EstimatedReturnTime { get; set; }
public string ReadyForReturnSince { get; set; }
public bool IsAlert { get; set; }
public bool WaitingForUserAction { get; set; }
public string WaitingForUserActionSince { get; set; }
public int DeviceProfileId { get; set; }
public string DeviceAddress { get; set; }
}
}