KukaRequestDto.cs 318 Bytes
using System.Xml.Serialization;

namespace HHECS.RobotTool.Dto
{
    [XmlRoot("Robot")]
    public class KukaRequestDto
    {
        public string Code { get; set; } = null!;

        [XmlElement("GrooveWidth")]
        public float GrooveWidth { get; set; }
        public float GrooveDepth { get; set; }
    }
}