mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
12 lines
284 B
C#
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; }
|
|
}
|
|
} |