mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
9 lines
224 B
C#
9 lines
224 B
C#
namespace MalwareMultiScan.Backends.Messages
|
|
{
|
|
public class ScanResultMessage
|
|
{
|
|
public string Id { get; set; }
|
|
public string Backend { get; set; }
|
|
public string[] Threats { get; set; }
|
|
}
|
|
} |