RobotNet/RobotNet.RobotShares/Dtos/RobotOnlineStateDto.cs
2025-10-15 15:15:53 +07:00

12 lines
254 B
C#

namespace RobotNet.RobotShares.Dtos;
#nullable disable
public class RobotOnlineStateDto
{
public string RobotId { get; set; }
public string State { get; set; }
public bool IsOnline { get; set; }
public double Battery { get; set; }
}