12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Schema;
- using System.Xml.Serialization;
- namespace MECF.Framework.Common.Beckhoff.AxisProvider
- {
- public class BeckhoffProviderAxis
- {
- [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Name { get; set; }
- public string Driver { get; set; }
- public string Units { get; set; }
- public double ScaleFactor { get; set; }
- public double JogLimit { get; set; }
- public double MinMoveTime { get;set; }
- }
- }
|