sharp-chat/SharpChat/Packet/ContextClearPacket.cs

27 lines
691 B
C#
Raw Normal View History

2024-05-10 17:28:52 +00:00
namespace SharpChat.Packet {
2022-08-30 15:00:58 +00:00
public enum ContextClearMode {
Messages = 0,
Users = 1,
Channels = 2,
MessagesUsers = 3,
MessagesUsersChannels = 4,
}
public class ContextClearPacket : ServerPacket {
public ChatChannel Channel { get; private set; }
public ContextClearMode Mode { get; private set; }
public bool IsGlobal
=> Channel == null;
public ContextClearPacket(ChatChannel channel, ContextClearMode mode) {
Channel = channel;
Mode = mode;
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-10 17:28:52 +00:00
return string.Format("8\t{0}", (int)Mode);
2022-08-30 15:00:58 +00:00
}
}
}