12 lines
254 B
C#
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; }
|
|
}
|