using System; namespace MafiaCommon.Packets { public class ServerShutdownPacket : Packet { public readonly String Reason; public ServerShutdownPacket(String reason) : base(PacketType.ServerShutdown) { Reason = reason; } } }