refactoring and adding clamav scanning backend

This commit is contained in:
Volodymyr Smirnov
2020-10-20 17:08:40 +03:00
parent 7e63c77419
commit b1a2357b50
15 changed files with 128 additions and 46 deletions

View File

@@ -6,13 +6,13 @@ 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; }
}
}