core/modules/psocsf/public/Objects/Vulnerability/CVE.cs
using System;
using System.Globalization; namespace Ocsf.Objects.Vulnerability { public class CVE { public string Id { get; set; } public CVSS CVSS { get; set; } public string CweId { get; set; } public string CweURL { get; set; } public Product Product { get; set; } public DateTime CreatedTime { get; set; } public DateTime ModifiedTime { get; set; } public string Type { get; set; } } } |