mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 05:22:22 +00:00
17 lines
355 B
C#
17 lines
355 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
|
|
namespace MalwareMultiScan.Shared.Data.Responses
|
|
{
|
|
public class ResultResponse
|
|
{
|
|
[Required]
|
|
public string Backend { get; set; }
|
|
|
|
[Required]
|
|
public bool Success { get; set; }
|
|
|
|
public string[] Threats { get; set; }
|
|
}
|
|
} |