namespace MalwareMultiScan.Api.Data.Models
{
///
/// Scan result entry.
///
public class ScanResultEntry
{
///
/// Completion status.
///
public bool Completed { get; set; }
///
/// Indicates that scanning completed without error.
///
public bool? Succeeded { get; set; }
///
/// Scanning duration in seconds.
///
public long Duration { get; set; }
///
/// Detected names of threats.
///
public string[] Threats { get; set; }
}
}