BeckhoffProviderAxis.cs 686 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Schema;
  7. using System.Xml.Serialization;
  8. namespace MECF.Framework.Common.Beckhoff.AxisProvider
  9. {
  10. public class BeckhoffProviderAxis
  11. {
  12. [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  13. public string Name { get; set; }
  14. public string Driver { get; set; }
  15. public string Units { get; set; }
  16. public double ScaleFactor { get; set; }
  17. public double JogLimit { get; set; }
  18. public double MinMoveTime { get;set; }
  19. }
  20. }