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

namespace AutomaticGrooveCalculationTool.Model
{
    [XmlRoot("Robot")]
    public class KukaRequestDto
    {
        public double GrooveWidth { get; set; }
        public double GrooveDepth { get; set; }
    }
}