10 lines
259 B
C#
10 lines
259 B
C#
using RobotNet.VDA5050.Type;
|
|
|
|
namespace RobotNet10.FleetManager.Events.Events;
|
|
|
|
public class ConnectionStateChangedEvent : EventArgs
|
|
{
|
|
public string RobotId { get; set; } = string.Empty;
|
|
public ConnectionState ConnectionState { get; set; }
|
|
}
|