| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 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.Device.LinMot{    public class LinMotDeviceData    {        [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]        public string Name { get; set; }        public double TopPosition { get; set; }        public double BottomPosition { get; set; }        public double UpMaxSpeed { get; set; }        public double DownMaxSpeed { get; set; }        public int UpMaxAcceleration { get; set; }        public int DownMaxAcceleration { get; set; }        public int UpMaxDeceleration { get; set; }        public int DownMaxDeceleration { get; set; }        public int MotionMode { get; set; }        public int CurveId { get; set; }        public int CurveOffset { get; set; }        public int CurveTime { get; set; }        public int CurveScale { get; set; }        public int StartMode { get; set; }    }}
 |