ILog.cs 318 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using WCS.Protocol.SX.DataStructure;
  5. namespace WCS.Protocol.SX
  6. {
  7. public interface ILog : IProtocol
  8. {
  9. string Log { get; set; }
  10. }
  11. public class DataILog :DeviceData, ILog
  12. {
  13. public string Log { get; set; }
  14. }
  15. }