mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
28 lines
713 B
C#
28 lines
713 B
C#
namespace MalwareMultiScan.Api.Data.Models
|
|
{
|
|
/// <summary>
|
|
/// Scan result entry.
|
|
/// </summary>
|
|
public class ScanResultEntry
|
|
{
|
|
/// <summary>
|
|
/// Completion status.
|
|
/// </summary>
|
|
public bool Completed { get; set; }
|
|
|
|
/// <summary>
|
|
/// Indicates that scanning completed without error.
|
|
/// </summary>
|
|
public bool? Succeeded { get; set; }
|
|
|
|
/// <summary>
|
|
/// Scanning duration in seconds.
|
|
/// </summary>
|
|
public long Duration { get; set; }
|
|
|
|
/// <summary>
|
|
/// Detected names of threats.
|
|
/// </summary>
|
|
public string[] Threats { get; set; }
|
|
}
|
|
} |