21 lines
335 B
Plaintext
21 lines
335 B
Plaintext
public class {ClassName} : BinaryMessageBase
|
|
{
|
|
public {ClassName}()
|
|
{
|
|
sysID = {sysIDValue};
|
|
cmdID = {cmdIDValue};
|
|
}
|
|
|
|
{Proprites}
|
|
|
|
public override void ReadMsg(BinaryReader binaryReader)
|
|
{
|
|
{ReadProps}
|
|
}
|
|
|
|
public override void WriteMsg(BinaryWriter binaryWriter)
|
|
{
|
|
{WriteProps}
|
|
}
|
|
}
|