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