BeckhoffStationAxis.cs 712 B

123456789101112131415161718192021222324
  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.Station
  9. {
  10. public class BeckhoffStationAxis
  11. {
  12. [XmlAttribute(AttributeName = "Name", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  13. public string Name { get; set; }
  14. [XmlAttribute(AttributeName = "MaterialSize", Form = XmlSchemaForm.Unqualified, DataType = "string")]
  15. public string MaterialSize { get; set; }
  16. public double ToleranceDefault { get; set; }
  17. public List<Station> Stations { get; set; }
  18. }
  19. }