Mercurial > hg > Database > Christie-sharp
view datagear/command/ConvertedCommand.cs @ 16:7352793b5dbe
add some Commands
author | riono <e165729@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 22 Nov 2020 01:52:22 +0900 |
parents | |
children |
line wrap: on
line source
namespace Christie_net.datagear.command { public class ConvertedCommand { private byte[] command; private byte[] data; public ConvertedCommand() { } public ConvertedCommand(byte[] command, byte[] data) { this.command = command; this.data = data; } public byte[] GetCommand() { return command; } public byte[] GetData() { return data; } } }