core/modules/psocsf/public/Objects/Vulnerability/SoftwarePackage.cs

using Ocsf.Objects;
using Ocsf.Objects.Entity;
 
namespace Ocsf.Objects.Vulnerability {
        public class SoftwarePackage {
            public string Architecture { get; set; }
            public int Epoch { get; set; }
            public string Name { get; set; }
            public string Purl { get; set; }
            public string License { get; set; }
            public string Release { get; set; }
            public string Version { get; set; }
        }
    }