sharp-chat/SharpChat/Packet/UserChannelLeavePacket.cs

18 lines
417 B
C#
Raw Normal View History

namespace SharpChat.Packet {
public class UserChannelLeavePacket : SockChatS2CPacket {
private readonly long UserId;
2022-08-30 15:00:58 +00:00
public UserChannelLeavePacket(long userId) {
UserId = userId;
2022-08-30 15:00:58 +00:00
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
return string.Format(
"5\t1\t{0}\t{1}",
UserId,
MessageId
);
2022-08-30 15:00:58 +00:00
}
}
}