Volodymyr Smirnov b3fc7ff2d9 duration of scan
2020-10-27 21:40:34 +02:00

12 lines
284 B
C#

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; }
}
}