123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.Device.Festo
- {
- public class FestoCommand
- {
-
-
-
- public byte Channel { get; set; }
-
-
-
- public byte CommandCode { get; set; }
-
-
-
- public ushort Address { get; set; }
-
-
-
- public ushort RegisterCount { get; set; }
-
-
-
- public byte[] Datas { get; set; }
- }
- }
|