1234567891011121314151617181920212223 |
- 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.Galil
- {
- public class GalilAxisConfig : AxisConfig
- {
- [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Name { get; set; }
- [XmlAttribute(AttributeName = "Index", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int Index { get; set; }
- [XmlAttribute(AttributeName = "Type", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Type { get; set; }
- [XmlAttribute(AttributeName = "CNType", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int CNType { get; set; }
- }
- }
|