1234567891011121314151617181920 |
- 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 FestoDebugger.Beckoff
- {
- public class BeckhoffModuleIOInfo
- {
- [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string Name { get; set; }
- [XmlAttribute(AttributeName = "IOName", Form = XmlSchemaForm.Unqualified, DataType = "string")]
- public string IOName { get; set; }
- }
- }
|