BarcodeReaderConfig.cs 576 B

123456789101112131415161718
  1. using MECF.Framework.Common.Device.ResistivityProbe;
  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.Device.BarcodeReader
  10. {
  11. public class BarcodeReaderConfig
  12. {
  13. [XmlElement(Type = typeof(BarcodeReaderDeviceConfig), ElementName = "BarcodeReaderDeviceConfig", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  14. public List<BarcodeReaderDeviceConfig> BarcodeDeviceConfigs { get; set; }
  15. }
  16. }