9 lines
323 B
C#
9 lines
323 B
C#
namespace isnd.Data.Catalog
|
|
{
|
|
public class Vulnerabilitie
|
|
{
|
|
public string advisoryUrl { get; set; } // string yes Location of security advisory for the package
|
|
public string severity { get; set; } // string yes Severity of advisory: "0" = Low, "1" = Moderate, "2" = High, "3" = Critical
|
|
|
|
}
|
|
} |