RobotNet/RobotNet.RobotShares/VDA5050/State/SafetyState.cs
2025-10-15 15:15:53 +07:00

21 lines
310 B
C#

using System.ComponentModel.DataAnnotations;
namespace RobotNet.RobotShares.VDA5050.State;
public enum EStop
{
AUTOACK,
MANUAL,
REMOTE,
NONE,
}
public class SafetyState
{
[Required]
public string? EStop { get; set; }
[Required]
public bool FieldViolation { get; set; }
}