ControlResult.cs 447 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IntelligentControlForsx.Service.WindturbineControl.Domain.Cmd
  7. {
  8. public class ControlResult
  9. {
  10. public string Ip { set; get; }
  11. public ushort Port { set; get; }
  12. public byte[] Types { set; get; }
  13. public int[] Addresses { set; get; }
  14. public int[] Errors { set; get; }
  15. }
  16. }