Files
Disco/Disco.Web/Areas/Public/Models/UserHeldDevices/UserHeldDeviceModel.cs
T
2024-12-14 16:55:37 +11:00

16 lines
625 B
C#

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