sharp-chat/SharpChat/Packet/UserUpdateNotificationPacket.cs

26 lines
865 B
C#

using System;
namespace SharpChat.Packet {
public class UserUpdateNotificationPacket : ServerPacket {
private readonly string PreviousName;
private readonly string NewName;
private readonly DateTimeOffset Timestamp;
public UserUpdateNotificationPacket(string previousName, string newName) {
PreviousName = previousName ?? throw new ArgumentNullException(nameof(previousName));
NewName = newName ?? throw new ArgumentNullException(nameof(newName));
Timestamp = DateTimeOffset.Now;
}
public override string Pack() {
return string.Format(
"2\t{0}\t-1\t0\fnick\f{1}\f{2}\t{3}\t10010",
Timestamp.ToUnixTimeSeconds(),
PreviousName,
NewName,
SequenceId
);
}
}
}