| 12345678910111213141516171819 | using MECF.Framework.Common.Beckhoff.Station;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{    [XmlRoot("Axes")]    public class BeckhoffAxisProviderCfg    {        [XmlElement(Type = typeof(BeckhoffProviderAxis), ElementName = "Axis", IsNullable = false, Form = XmlSchemaForm.Qualified)]        public List<BeckhoffProviderAxis> Axes { get; set; }    }}
 |