123456789101112131415161718192021222324252627282930313233343536 |
- using MECF.Framework.Common.CommonData;
- using MECF.Framework.Common.Device.ResistivityProbe;
- 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.BarcodeReader
- {
- public class BarcodeReaderDeviceConfig : NotifiableItem
- {
- [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Name { get; set; }
- [XmlAttribute(AttributeName = "BaudRate", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int BaudRate { get; set; }
- [XmlAttribute(AttributeName = "Parity", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Parity { get; set; }
- [XmlAttribute(AttributeName = "Data", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int Data { get; set; }
- [XmlAttribute(AttributeName = "StopBit", Form = XmlSchemaForm.Unqualified, DataType = "int")]
- public int StopBit { get; set; }
- [XmlAttribute(AttributeName = "Port", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Port { get; set; }
-
- }
- }
|