18 lines
510 B
C#
18 lines
510 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharpChat.Packet {
|
|||
|
public class PardonResponsePacket : ServerPacket {
|
|||
|
private readonly long Timestamp;
|
|||
|
private readonly string Subject;
|
|||
|
|
|||
|
public PardonResponsePacket(string subject) {
|
|||
|
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
|
|||
|
Subject = subject;
|
|||
|
}
|
|||
|
|
|||
|
public override string Pack() {
|
|||
|
return string.Format("2\t{0}\t-1\t0\funban\f{1}\t{2}\t10010", Timestamp, Subject, SequenceId);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|