XIVChat/XIVChatCommon/Message/Server/ServerShutdown.cs

14 lines
369 B
C#

using MessagePack;
namespace XIVChatCommon.Message.Server {
public class ServerShutdown : Encodable {
public static ServerShutdown Instance { get; } = new();
[IgnoreMember]
protected override byte Code => (byte)ServerOperation.Shutdown;
protected override byte[] PayloadEncode() {
return new byte[0];
}
}
}