core/modules/psocsf/public/Objects/Vulnerability/KbArticle.cs
using System;
using System.Globalization; using Ocsf.Objects; namespace Ocsf.Objects.Vulnerability { public class KbArticle { public string Classification { get; set; } public DateTime CreatedTime { get; set; } public OperatingSystem OS { get; set; } public string Bulletin { get; set; } public Product Product { get; set; } public string Severity { get; set; } public long Size { get; set; } public string SrcUrl { get; set; } public bool IsSuperseded { get; set; } public string Title { get; set; } public string Id { get; set; } } } |