123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Common.IOCore
- {
- public class NotifiableIoItem
- {
- public string Name { get; set; }
- public int Index { get; set; }
- public string Description { get; set; }
- public bool BoolValue { get; set; }
- public string Address { get; set; }
- }
- }
|