| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Runtime.Serialization;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- using MECF.Framework.Common.CommonData;
 
- namespace MECF.Framework.Common.IOCore
 
- {
 
-     public class NotifiableIoItem : NotifiableItem
 
-     {
 
-         [DataMember]
 
-         public string Name { get; set; }
 
-         [DataMember]
 
-         public string Description { get; set; }
 
-         [DataMember]
 
-         public int Index { get; set; }
 
-         [DataMember]
 
-         public bool BoolValue { get; set; }
 
-         [DataMember]
 
-         public short ShortValue { get; set; }
 
-         [DataMember]
 
-         public string Address { get; set; }
 
-         [DataMember]
 
-         public string Provider { get; set; }
 
-         [DataMember]
 
-         public int BlockOffset { get; set; }
 
-         [DataMember]
 
-         public int BlockIndex { get; set; }
 
-         [DataMember]
 
-         public bool HoldValue { get; set; }
 
-         [DataMember]
 
-         public bool CanEdit { get; set; }
 
-         public NotifiableIoItem Clone()
 
-         {
 
-             return new NotifiableIoItem()
 
-             {
 
-                 Address = Address,
 
-                 BlockIndex = BlockIndex,
 
-                 BlockOffset = BlockOffset,
 
-                 BoolValue = BoolValue,
 
-                 Description = Description,
 
-                 HoldValue = HoldValue,
 
-                 Index = Index,
 
-                 Name = Name,
 
-                 Provider = Provider,
 
-                 ShortValue = ShortValue,
 
-             };
 
-         }
 
-     }
 
- }
 
 
  |