BeckhoffAxisProviderCfg.cs 567 B

12345678910111213141516171819
  1. using MECF.Framework.Common.Beckhoff.Station;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Xml.Schema;
  8. using System.Xml.Serialization;
  9. namespace MECF.Framework.Common.Beckhoff.AxisProvider
  10. {
  11. [XmlRoot("Axes")]
  12. public class BeckhoffAxisProviderCfg
  13. {
  14. [XmlElement(Type = typeof(BeckhoffProviderAxis), ElementName = "Axis", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  15. public List<BeckhoffProviderAxis> Axes { get; set; }
  16. }
  17. }