1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using WCS.Protocol.SX.DataStructure;
- namespace WCS.Protocol.SX
- {
- public interface ILog : IProtocol
- {
- string Log { get; set; }
- }
- public class DataILog :DeviceData, ILog
- {
- public string Log { get; set; }
- }
- }
|