core/modules/psocsf/public/Objects/Vulnerability/AffectedSoftwarePackage.cs
using Ocsf.Objects;
using Ocsf.Objects.Entity; namespace Ocsf.Objects.Vulnerability { public class AffectedSoftwarePackage { public string Architecture { get; set; } public int Epoch { get; set; } public string FixedInVersion { get; set; } public string Name { get; set; } public string PackageManager { get; set; } public string Purl { get; set; } public string Path { get; set; } public Remediation Remediation { get; set; } public string License { get; set; } public string Release { get; set; } public string Version { get; set; } } } |