SRDPersistentCollection.cs 574 B

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