feat: add 服务端
This commit is contained in:
10
PetWash.Api/Models/DeviceStatus.cs
Normal file
10
PetWash.Api/Models/DeviceStatus.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user