BeckhoffModuleIOCfg.cs 482 B

1234567891011121314151617
  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.Beckhoff.ModuleIO
  9. {
  10. public class BeckhoffModuleIOCfg
  11. {
  12. [XmlElement(Type = typeof(BeckhoffModule), ElementName = "Module", IsNullable = false, Form = XmlSchemaForm.Qualified)]
  13. public List<BeckhoffModule> Modules { get; set; }
  14. }
  15. }