class AntimalwareCommon #region Protection Status Codes and Rankings ThreatDetectedProtectionCode = [550, "Threat Detected"] UnknownProtectionCode = [ 470, "Unknown" ] NotReportingProtectionCode = [ 450, "Not Reporting" ] ActionRequiredProtectionCode = [ 350, "Action Required" ] NoRealTimeProtectionProtectionCode = [ 270, "No real time protection" ] SignaturesOutOfDateProtectionCode = [ 250, "Signatures out of date" ] RealTimeProtectionCode = [ 150, "Real time protection" ] #endregion #region Threat Status Codes and Rankings ActiveThreatCode = [ 550, "Active" ] UnknownThreatCode = [ 470, "Unknown" ] RemediatedThreatThreatCode = [ 370, "Remediated" ] QuarantinedThreatCode = [ 350, "Quarantined" ] BlockedThreatCode = [ 330, "Blocked" ] AllowedThreatCode = [ 250, "Allowed" ] NoThreatsDetectedThreatCode = [ 150, "No threats detected" ] #endregion end