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