sharp-chat/SharpChat/Packet/UserChannelLeavePacket.cs

14 lines
351 B
C#
Raw Permalink Normal View History

namespace SharpChat.Packet {
2022-08-30 15:00:58 +00:00
public class UserChannelLeavePacket : ServerPacket {
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, SequenceId);
2022-08-30 15:00:58 +00:00
}
}
}