ThorntonConfig.cs 525 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Schema;
  7. using System.Xml.Serialization;
  8. namespace MECF.Framework.Common.Device.ResistivityProbe
  9. {
  10. public class ThorntonConfig
  11. {
  12. [XmlElement(Type = typeof(ThorntonDeviceConfig), ElementName = "ThorntonDeviceConfig", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  13. public List<ThorntonDeviceConfig> ThorntonDeviceConfigs { get; set; }
  14. }
  15. }