15 lines
491 B
Go
15 lines
491 B
Go
|
|
package org.nieo.seerproject.common.net.info.login;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
import org.nieo.seerproject.common.annotations.InboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.net.InboundMessage;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@FieldDescription("SID")
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Commend_OnLine)
|
||
|
|
public class SidInfo implements InboundMessage {
|
||
|
|
private byte [] sid;
|
||
|
|
}
|