sharp-chat/SharpChat.SockChat/PacketsS2C/UserChannelLeaveS2CPacket.cs

18 lines
436 B
C#
Raw Normal View History

namespace SharpChat.SockChat.PacketsS2C {
public class UserChannelLeaveS2CPacket : SockChatS2CPacket {
private readonly long UserId;
2022-08-30 15:00:58 +00:00
public UserChannelLeaveS2CPacket(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
}
}
}