sharp-chat/SharpChat/Packet/UserChannelLeavePacket.cs

16 lines
431 B
C#
Raw Normal View History

2022-08-30 15:00:58 +00:00
using System;
namespace SharpChat.Packet {
public class UserChannelLeavePacket : ServerPacket {
public ChatUser User { get; private set; }
public UserChannelLeavePacket(ChatUser user) {
User = user ?? throw new ArgumentNullException(nameof(user));
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-10 17:28:52 +00:00
return string.Format("5\t1\t{0}\t{1}", User.UserId, SequenceId);
2022-08-30 15:00:58 +00:00
}
}
}