12 lines
284 B
C#
Raw Normal View History

2020-10-27 21:40:34 +02:00
using System;
namespace MalwareMultiScan.Api.Data.Models
{
public class ScanResultEntry
{
public bool Completed { get; set; }
public bool? Succeeded { get; set; }
2020-10-27 21:40:34 +02:00
public long Duration { get; set; }
public string[] Threats { get; set; }
}
}