mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 13:32:22 +00:00
9 lines
225 B
C#
9 lines
225 B
C#
namespace MalwareMultiScan.Api.Data.Models
|
|
{
|
|
public class ScanResultEntry
|
|
{
|
|
public bool Completed { get; set; }
|
|
public bool Succeeded { get; set; }
|
|
public string[] Threats { get; set; }
|
|
}
|
|
} |