namespace QuantConnect.Packets
{
///
/// Debug packets generated by Lean
///
public class SystemDebugPacket : DebugPacket
{
///
/// Default constructor for JSON
///
public SystemDebugPacket()
: base (PacketType.SystemDebug)
{ }
///
/// Create a new instance of the system debug packet
///
public SystemDebugPacket(int projectId, string algorithmId, string compileId, string message, bool toast = false)
: base(PacketType.SystemDebug)
{
ProjectId = projectId;
Message = message;
CompileId = compileId;
AlgorithmId = algorithmId;
Toast = toast;
}
}
}