Files
petwash/PetWash.Api/Models/DeviceStatus.cs

11 lines
280 B
C#
Raw Permalink Normal View History

2026-02-25 15:41:00 +08:00
namespace PetWash.Api.Models;
public class DeviceStatus
{
public string Status { get; set; } = "Idle";
public bool DoorOpen { get; set; }
public bool IsWashing { get; set; }
public int? CurrentOrderId { get; set; }
public DateTime LastUpdated { get; set; }
}