mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-23 21:12:22 +00:00
13 lines
274 B
C#
13 lines
274 B
C#
|
using MalwareMultiScan.Shared.Enums;
|
||
|
|
||
|
namespace MalwareMultiScan.Shared.Message
|
||
|
{
|
||
|
public class ScanResultMessage
|
||
|
{
|
||
|
public ScanResultStatus Status { get; set; }
|
||
|
|
||
|
public long Duration { get; set; }
|
||
|
|
||
|
public string[] Threats { get; set; }
|
||
|
}
|
||
|
}
|