mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
18 lines
396 B
C#
18 lines
396 B
C#
|
using System;
|
||
|
using System.Linq;
|
||
|
|
||
|
namespace MalwareMultiScan.Shared.Data.Responses
|
||
|
{
|
||
|
public class ResultResponse
|
||
|
{
|
||
|
public string Backend { get; set; }
|
||
|
|
||
|
public bool Success { get; set; }
|
||
|
|
||
|
public DateTime? DatabaseLastUpdate { get; set; }
|
||
|
|
||
|
public bool Detected => Threats?.Any() == true;
|
||
|
|
||
|
public string[] Threats { get; set; }
|
||
|
}
|
||
|
}
|