1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IntelligentControlForsx.Service.WindturbineControl.Domain.Cmd
- {
- public class ControlResult
- {
- public string Ip { set; get; }
- public ushort Port { set; get; }
- public byte[] Types { set; get; }
- public int[] Addresses { set; get; }
- public int[] Errors { set; get; }
- }
- }
|