duration of scan

This commit is contained in:
Volodymyr Smirnov
2020-10-27 21:40:34 +02:00
parent 2a933ebe6b
commit b3fc7ff2d9
9 changed files with 40 additions and 4 deletions

View File

@@ -1,9 +1,12 @@
using System;
namespace MalwareMultiScan.Api.Data.Models
{
public class ScanResultEntry
{
public bool Completed { get; set; }
public bool? Succeeded { get; set; }
public long Duration { get; set; }
public string[] Threats { get; set; }
}
}